Skip to content

Commit

Permalink
add log to debug in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Oct 30, 2024
1 parent f7f8ef6 commit 6b4b097
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/client/common/terminal/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export class TerminalService implements ITerminalService, Disposable {
disposable = this.terminalManager.onDidEndTerminalShellExecution((e) => {
if (e.execution === execution) {
resolve({ execution, exitCode: e.exitCode });
console.log('Resolving inside onDidEndTerminalShellExecution');
}
});

Expand All @@ -120,6 +121,7 @@ export class TerminalService implements ITerminalService, Disposable {
} else {
terminal.sendText(commandLine);
traceVerbose(`Shell Integration is disabled, sendText: ${commandLine}`);
console.log('sendText instead of try catch. This means terminal.shellIntegration is undefined');
}

return undefined;
Expand Down

0 comments on commit 6b4b097

Please sign in to comment.