Skip to content

Commit c1b0fbb

Browse files
authored
remove console.log (microsoft#208474)
1 parent bb1e1c8 commit c1b0fbb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

extensions/json-language-features/client/src/jsonClient.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,6 @@ async function startClientWithParticipants(context: ExtensionContext, languagePa
265265
},
266266
provideDiagnostics: async (uriOrDoc, previousResolutId, token, next) => {
267267
const diagnostics = await next(uriOrDoc, previousResolutId, token);
268-
console.log('provideDiagnostics', diagnostics, uriOrDoc);
269268
if (diagnostics && diagnostics.kind === DocumentDiagnosticReportKind.Full) {
270269
const uri = uriOrDoc instanceof Uri ? uriOrDoc : uriOrDoc.uri;
271270
diagnostics.items = filterSchemaErrorDiagnostics(uri, diagnostics.items);

0 commit comments

Comments
 (0)