@@ -26,7 +26,7 @@ import {
26
26
IPathUtils ,
27
27
} from '../../common/types' ;
28
28
import { Interpreters } from '../../common/utils/localize' ;
29
- import { traceError , traceInfo , traceVerbose , traceWarn } from '../../logging' ;
29
+ import { traceError , traceInfo , traceLog , traceVerbose , traceWarn } from '../../logging' ;
30
30
import { IInterpreterService } from '../../interpreter/contracts' ;
31
31
import { defaultShells } from '../../interpreter/activation/service' ;
32
32
import { IEnvironmentActivationService } from '../../interpreter/activation/types' ;
@@ -222,7 +222,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
222
222
if ( value !== undefined ) {
223
223
if ( key === 'PS1' ) {
224
224
// We cannot have the full PS1 without executing in terminal, which we do not. Hence prepend it.
225
- traceVerbose (
225
+ traceLog (
226
226
`Prepending environment variable ${ key } in collection with ${ value } ${ JSON . stringify (
227
227
defaultPrependOptions ,
228
228
) } `,
@@ -242,7 +242,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
242
242
if ( deactivate ) {
243
243
value = `${ deactivate } ${ this . separator } ${ value } ` ;
244
244
}
245
- traceVerbose (
245
+ traceLog (
246
246
`Prepending environment variable ${ key } in collection with ${ value } ${ JSON . stringify (
247
247
options ,
248
248
) } `,
@@ -255,7 +255,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
255
255
if ( deactivate ) {
256
256
value = `${ deactivate } ${ this . separator } ${ value } ` ;
257
257
}
258
- traceVerbose (
258
+ traceLog (
259
259
`Prepending environment variable ${ key } in collection to ${ value } ${ JSON . stringify (
260
260
options ,
261
261
) } `,
@@ -268,7 +268,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
268
268
applyAtShellIntegration : true ,
269
269
applyAtProcessCreation : true ,
270
270
} ;
271
- traceVerbose (
271
+ traceLog (
272
272
`Setting environment variable ${ key } in collection to ${ value } ${ JSON . stringify ( options ) } ` ,
273
273
) ;
274
274
envVarCollection . replace ( key , value , options ) ;
0 commit comments