Skip to content

Commit 5764b82

Browse files
committed
Remove console.log() call
1 parent 08b1b4d commit 5764b82

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vscode-extensions/commons-vscode/src/launch-util.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@ function isCheckingJVM(wsOpts : VSCode.WorkspaceConfiguration): boolean {
6969
if (!wsOpts) {
7070
return true;
7171
}
72-
const checkJvm: boolean = wsOpts.get("checkJVM");
73-
console.log(`Check JVM: ${checkJvm}`);
74-
return checkJvm;
72+
return wsOpts.get("checkJVM");
7573
}
7674

7775
function getUserDefinedJvmArgs(wsOpts : VSCode.WorkspaceConfiguration) : string[] {

0 commit comments

Comments
 (0)