File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
debugger/configuration/resolvers Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { resolveVariables } from '../utils/common';
12
12
import { BaseConfigurationResolver } from './base' ;
13
13
import { getDebugEnvironmentVariables , getProgram } from './helper' ;
14
14
import { getConfiguration } from '../../../common/vscodeapi' ;
15
+ import { traceLog } from '../../../common/log/logging' ;
15
16
16
17
export class LaunchConfigurationResolver extends BaseConfigurationResolver < LaunchRequestArguments > {
17
18
public async resolveDebugConfiguration (
@@ -51,6 +52,7 @@ export class LaunchConfigurationResolver extends BaseConfigurationResolver<Launc
51
52
debugConfiguration : LaunchRequestArguments ,
52
53
_token ?: CancellationToken ,
53
54
) : Promise < LaunchRequestArguments | undefined > {
55
+ traceLog ( 'Resolving launch configuration with substituted variables' ) ;
54
56
const workspaceFolder = LaunchConfigurationResolver . getWorkspaceFolder ( folder ) ;
55
57
await this . provideLaunchDefaults ( workspaceFolder , debugConfiguration ) ;
56
58
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ export enum EventName {
23
23
ENVFILE_VARIABLE_SUBSTITUTION = 'ENVFILE_VARIABLE_SUBSTITUTION' ,
24
24
USE_REPORT_ISSUE_COMMAND = 'USE_REPORT_ISSUE_COMMAND' ,
25
25
DEBUGGER_PYTHON_37_DEPRECATED = 'DEBUGGER_PYTHON_37_DEPRECATED' ,
26
+ DEBUGGER_SHOW_PYTHON_INLINE_VALUES = 'DEBUGGER_SHOW_PYTHON_INLINE_VALUES' ,
26
27
}
You can’t perform that action at this time.
0 commit comments