File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/client/debugger/extension/configuration/launch.json Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export async function getConfigurationsForWorkspace(workspace: WorkspaceFolder):
16
16
if ( ! codeWorkspaceConfig . configurations || ! Array . isArray ( codeWorkspaceConfig . configurations ) ) {
17
17
return [ ] ;
18
18
}
19
- traceLog ( ` Using launch configuration in workspace folder2.` , codeWorkspaceConfig . configurations ) ;
19
+ traceLog ( ' Using configuration in workspace' ) ;
20
20
return codeWorkspaceConfig . configurations ;
21
21
}
22
22
@@ -29,7 +29,7 @@ export async function getConfigurationsForWorkspace(workspace: WorkspaceFolder):
29
29
throw Error ( 'Missing field in launch.json: version' ) ;
30
30
}
31
31
// We do not bother ensuring each item is a DebugConfiguration...
32
- traceLog ( ` Using launch configuration in launch.json file.` ) ;
32
+ traceLog ( ' Using configuration in launch.json' ) ;
33
33
return parsed . configurations ;
34
34
}
35
35
You can’t perform that action at this time.
0 commit comments