make missing class warnings debug level

Ref #3914
This commit is contained in:
Clément Fournier
2023-03-21 21:22:19 +01:00
parent 24a089bfd3
commit 8307d8f5fa

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