File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2454,7 +2454,7 @@ export class DefaultClient implements Client {
24542454 configuration : itemConfig
24552455 } ) ;
24562456 } else {
2457- console . warn ( "discarding invalid SourceFileConfigurationItem: " + item ) ;
2457+ console . warn ( "discarding invalid SourceFileConfigurationItem: " + JSON . stringify ( item ) ) ;
24582458 }
24592459 } ) ;
24602460
@@ -2511,7 +2511,7 @@ export class DefaultClient implements Client {
25112511
25122512 sanitized = { ...< WorkspaceBrowseConfiguration > config } ;
25132513 if ( ! this . isWorkspaceBrowseConfiguration ( sanitized ) ) {
2514- console . log ( "Received an invalid browse configuration from configuration provider." ) ;
2514+ console . log ( "Received an invalid browse configuration from configuration provider: " + JSON . stringify ( sanitized ) ) ;
25152515 const configValue : WorkspaceBrowseConfiguration | undefined = lastCustomBrowseConfiguration . Value ;
25162516 if ( configValue ) {
25172517 sanitized = configValue ;
You can’t perform that action at this time.
0 commit comments