mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-27 03:46:17 -06:00
Use System.Logger for logging with Java 9+
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user