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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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