File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Terminal } from 'vscode';
33import { isWindows } from '../../managers/common/utils' ;
44import { vscodeShell } from '../../common/vscodeEnv.apis' ;
55import { getConfiguration } from '../../common/workspace.apis' ;
6+ import { traceLog } from '../../common/logging' ;
67
78/*
89When identifying the shell use the following algorithm:
@@ -150,6 +151,7 @@ function fromShellTypeApi(terminal: Terminal): string {
150151
151152export function identifyTerminalShell ( terminal : Terminal ) : string {
152153 let shellType = fromShellTypeApi ( terminal ) ;
154+ traceLog ( 'IdentifyTerminalShell: Shell type from API:' , shellType ) ;
153155
154156 if ( shellType === 'unknown' ) {
155157 shellType = identifyShellFromVSC ( terminal ) ;
You can’t perform that action at this time.
0 commit comments