We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4fcdf commit 7059802Copy full SHA for 7059802
2 files changed
extensions/ql-vscode/src/extension.ts
@@ -348,7 +348,7 @@ export async function activate(
348
try {
349
await prepareCodeTour();
350
} catch (e: unknown) {
351
- console.log(
+ void extLogger.log(
352
`Could not open tutorial workspace automatically: ${getErrorMessage(e)}`,
353
);
354
}
extensions/ql-vscode/src/helpers.ts
@@ -296,6 +296,9 @@ export async function prepareCodeTour(): Promise<void> {
296
!isCodespacesTemplate()
297
) {
298
const tutorialWorkspaceUri = Uri.parse(tutorialWorkspacePath);
299
300
+ `In prepareCodeTour() method, going to open the tutorial workspace file: ${tutorialWorkspacePath}`,
301
+ );
302
await commands.executeCommand("vscode.openFolder", tutorialWorkspaceUri);
303
304
0 commit comments