@@ -156,6 +156,10 @@ export class LLDBDebugConfigurationProvider implements vscode.DebugConfiguration
156
156
157
157
private async promptForCodeLldbSettings ( ) : Promise < void > {
158
158
const libLldbPathResult = await getLLDBLibPath ( this . toolchain ) ;
159
+ /* eslint-disable no-console */
160
+ console . log ( ">>> libLldbPathResult" , libLldbPathResult ) ;
161
+ console . log ( ">>> libLldbPathResult success" , libLldbPathResult . success ) ;
162
+ console . log ( ">>> libLldbPathResult failure" , libLldbPathResult . failure ) ;
159
163
if ( ! libLldbPathResult . success ) {
160
164
const errorMessage = `Error: ${ getErrorDescription ( libLldbPathResult . failure ) } ` ;
161
165
vscode . window . showWarningMessage (
@@ -166,6 +170,15 @@ export class LLDBDebugConfigurationProvider implements vscode.DebugConfiguration
166
170
}
167
171
const libLldbPath = libLldbPathResult . success ;
168
172
const lldbConfig = vscode . workspace . getConfiguration ( "lldb" ) ;
173
+ console . log ( ">>> lldbConfig library" , lldbConfig . get < string > ( "library" ) ) ;
174
+ console . log (
175
+ ">>> lldbConfig launch.expressions" ,
176
+ lldbConfig . get < string > ( "launch.expressions" )
177
+ ) ;
178
+
179
+ const allSettings = vscode . workspace . getConfiguration ( ) ;
180
+ console . log ( ">>> All VS Code settings:" , JSON . stringify ( allSettings ) ) ;
181
+
169
182
if (
170
183
lldbConfig . get < string > ( "library" ) === libLldbPath &&
171
184
lldbConfig . get < string > ( "launch.expressions" ) === "native"
0 commit comments