Use System.Logger for logging with Java 9+

This commit is contained in:
Ingo Kegel
2021-03-10 17:52:23 +01:00
parent eedfcf86aa
commit 712bff9c99
12 changed files with 97 additions and 64 deletions

View File

@@ -31,7 +31,7 @@ class Utils
"/com/formdev/flatlaf/intellijthemes/themes/" + name ) );
} catch( IOException ex ) {
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
LoggingFacade.logSevere( msg, ex );
LoggingFacade.INSTANCE.logSevere( msg, ex );
throw new RuntimeException( msg, ex );
}
}

View File

@@ -31,7 +31,7 @@ class Utils
"/com/formdev/flatlaf/intellijthemes/themes/material-theme-ui-lite/" + name ) );
} catch( IOException ex ) {
String msg = "FlatLaf: Failed to load IntelliJ theme '" + name + "'";
LoggingFacade.logSevere( msg, ex );
LoggingFacade.INSTANCE.logSevere( msg, ex );
throw new RuntimeException( msg, ex );
}
}