Update pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/SemanticErrorReporter.java

This commit is contained in:
Clément Fournier
2024-08-25 22:07:43 +02:00
committed by GitHub
parent 60e0109bbb
commit e597e21eda

View File

@@ -108,7 +108,7 @@ public interface SemanticErrorReporter {
@Override
public void warning(Node location, String message, Object... args) {
logMessage(Level.WARN, location, message, args);
logMessage(Level.DEBUG, location, message, args);
}
@Override