Report typeres errors more transparently

This commit is contained in:
Clément Fournier
2024-08-25 19:46:01 +02:00
parent 08b68d7dd0
commit d7a15d1854
3 changed files with 17 additions and 8 deletions

View File

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