Skip to content

Commit 5e8f779

Browse files
committed
commit more trace log for env
1 parent dfb21f0 commit 5e8f779

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/client/common/terminal/service.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ export class TerminalService implements ITerminalService, Disposable {
9999
const shellIntegration = (terminal.shellIntegration as unknown) as { env: any };
100100
const tempEnv = shellIntegration.env;
101101
console.log(tempEnv);
102-
traceVerbose('Printing temp env from service.ts in terminal1');
102+
traceVerbose('Printing temp env from service.ts in terminal1', tempEnv);
103+
traceVerbose('finished printing temp env ');
103104
});
104105
const TIMEOUT_DURATION = 500;
105106
const timer = setTimeout(() => {
@@ -122,7 +123,8 @@ export class TerminalService implements ITerminalService, Disposable {
122123
const shellIntegration = (terminal.shellIntegration as unknown) as { env: any };
123124
const tempEnv = shellIntegration.env;
124125
console.log(tempEnv);
125-
traceVerbose('Printing temp env from service.ts in terminal2');
126+
traceVerbose('Printing temp env from service.ts in terminal2', tempEnv);
127+
traceVerbose('finished printing temp env ');
126128
traceVerbose(`Shell Integration is enabled, executeCommand: ${commandLine}`);
127129
return execution;
128130
} else {

0 commit comments

Comments
 (0)