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 ff63bb0 commit 38b61a3Copy full SHA for 38b61a3
server/org.jboss.tools.vscode.java/src/org/jboss/tools/vscode/java/handlers/LogHandler.java
@@ -34,7 +34,7 @@ public class LogHandler {
34
35
public void install(JavaClientConnection rcpConnection) {
36
this.dateFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
37
- this.logLevelMask = getLogLevelMask(System.getProperty("log.level"));
+ this.logLevelMask = getLogLevelMask(System.getProperty("log.level", ""));//Empty by default
38
this.calendar = Calendar.getInstance();
39
this.connection = rcpConnection;
40
0 commit comments