File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ export async function activate(
348348 try {
349349 await prepareCodeTour ( ) ;
350350 } catch ( e : unknown ) {
351- console . log (
351+ void extLogger . log (
352352 `Could not open tutorial workspace automatically: ${ getErrorMessage ( e ) } ` ,
353353 ) ;
354354 }
Original file line number Diff line number Diff line change @@ -296,6 +296,9 @@ export async function prepareCodeTour(): Promise<void> {
296296 ! isCodespacesTemplate ( )
297297 ) {
298298 const tutorialWorkspaceUri = Uri . parse ( tutorialWorkspacePath ) ;
299+ void extLogger . log (
300+ `In prepareCodeTour() method, going to open the tutorial workspace file: ${ tutorialWorkspacePath } ` ,
301+ ) ;
299302 await commands . executeCommand ( "vscode.openFolder" , tutorialWorkspaceUri ) ;
300303 }
301304 }
You can’t perform that action at this time.
0 commit comments