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 {
2454
2454
configuration : itemConfig
2455
2455
} ) ;
2456
2456
} else {
2457
- console . warn ( "discarding invalid SourceFileConfigurationItem: " + item ) ;
2457
+ console . warn ( "discarding invalid SourceFileConfigurationItem: " + JSON . stringify ( item ) ) ;
2458
2458
}
2459
2459
} ) ;
2460
2460
@@ -2511,7 +2511,7 @@ export class DefaultClient implements Client {
2511
2511
2512
2512
sanitized = { ...< WorkspaceBrowseConfiguration > config } ;
2513
2513
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 ) ) ;
2515
2515
const configValue : WorkspaceBrowseConfiguration | undefined = lastCustomBrowseConfiguration . Value ;
2516
2516
if ( configValue ) {
2517
2517
sanitized = configValue ;
You can’t perform that action at this time.
0 commit comments