We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac5bb2 commit 62897c6Copy full SHA for 62897c6
src/client/common/terminal/service.ts
@@ -22,6 +22,7 @@ import {
22
TerminalShellType,
23
ITerminalExecutedCommand,
24
} from './types';
25
+import { traceVerbose } from '../../logging';
26
27
@injectable()
28
export class TerminalService implements ITerminalService, Disposable {
@@ -111,9 +112,11 @@ export class TerminalService implements ITerminalService, Disposable {
111
112
if (listener) {
113
this.executeCommandListeners.add(listener);
114
}
115
+ traceVerbose(`Shell Integration is enabled, executeCommand: ${commandLine}`);
116
});
117
} else {
118
terminal.sendText(commandLine);
119
+ traceVerbose(`Shell Integration is disabled, sendText: ${commandLine}`);
120
121
122
return undefined;
0 commit comments