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 dd107bd commit 3aa77acCopy full SHA for 3aa77ac
jabgui/src/main/java/org/jabref/Launcher.java
@@ -109,12 +109,7 @@ public static void initLogging(String[] args) {
109
110
// We must configure logging as soon as possible, which is why we cannot wait for the usual
111
// argument parsing workflow to parse logging options e.g. --debug
112
- Level logLevel =
113
- Arrays.stream(args).anyMatch("--debug"::equalsIgnoreCase)
114
- ?
115
- Level.DEBUG
116
- :
117
- Level.INFO;
+ Level logLevel = Arrays.stream(args).anyMatch("--debug"::equalsIgnoreCase) ? Level.DEBUG : Level.INFO;
118
119
// addLogToDisk
120
// We cannot use `Injector.instantiateModelOrService(BuildInfo.class).version` here, because this initializes logging
0 commit comments