We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5475ba commit 2f9407bCopy full SHA for 2f9407b
src/main/java/com/ss/editor/JfxApplication.java
@@ -167,7 +167,9 @@ public static void main(final String[] args) {
167
private static void configureLogger() {
168
169
// disable the standard logger
170
- java.util.logging.Logger.getLogger("").setLevel(Level.WARNING);
+ if (Config.DEV_DEBUG) {
171
+ java.util.logging.Logger.getLogger("").setLevel(Level.WARNING);
172
+ }
173
174
// configure our logger
175
LoggerLevel.DEBUG.setEnabled(Config.DEV_DEBUG);
0 commit comments