From ca78a258800fabae5810f9e0db4ff7cb97465455 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Fri, 27 Dec 2024 15:18:53 -0600 Subject: [PATCH] feat(developer): reduce log verbosity Fixes: #12789 --- developer/src/vscode-plugin/src/ldmleditor.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/developer/src/vscode-plugin/src/ldmleditor.ts b/developer/src/vscode-plugin/src/ldmleditor.ts index 4dd0a22c0d..4e81477480 100644 --- a/developer/src/vscode-plugin/src/ldmleditor.ts +++ b/developer/src/vscode-plugin/src/ldmleditor.ts @@ -79,7 +79,6 @@ export class LdmlEditorProvider implements vscode.CustomTextEditorProvider { throw new Error('Method not implemented.'); // TODO-LDML-EDITOR } async openCustomDocument(uri: vscode.Uri, openContext: vscode.CustomDocumentOpenContext, token: vscode.CancellationToken): Promise { - console.log(`openCustom ${uri}`); const document : LdmlDocument = await LdmlDocument.create(uri, openContext.backupId, { getFileData: async() => { return new Uint8Array(); // TODO-LDML-EDITOR @@ -126,11 +125,9 @@ export class LdmlEditorProvider implements vscode.CustomTextEditorProvider { const nonce = crypto.randomUUID().toString(); - console.dir({indexUri}); const indexRaw = await vscode.workspace.fs.readFile(indexUri); const indexText = new TextDecoder('UTF-8').decode(indexRaw); const html = fixupIndexHtml(indexText, buildUri.toString(), nonce, webview.cspSource); - console.log(html); webview.html = html; } catch(e) { console.error(e);