File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/client/common/terminal Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ export class TerminalService implements ITerminalService, Disposable {
107107 disposable = this . terminalManager . onDidEndTerminalShellExecution ( ( e ) => {
108108 if ( e . execution === execution ) {
109109 resolve ( { execution, exitCode : e . exitCode } ) ;
110+ console . log ( 'Resolving inside onDidEndTerminalShellExecution' ) ;
110111 }
111112 } ) ;
112113
@@ -120,6 +121,7 @@ export class TerminalService implements ITerminalService, Disposable {
120121 } else {
121122 terminal . sendText ( commandLine ) ;
122123 traceVerbose ( `Shell Integration is disabled, sendText: ${ commandLine } ` ) ;
124+ console . log ( 'sendText instead of try catch. This means terminal.shellIntegration is undefined' ) ;
123125 }
124126
125127 return undefined ;
You can’t perform that action at this time.
0 commit comments