From 7bbfacdbede3c07ef20e0c812d8b0955b2ca9e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Ramner=C3=B6?= Date: Thu, 13 Nov 2025 11:43:33 +0100 Subject: [PATCH] remove console log --- src/extension.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 4d55d17..8949eab 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -233,7 +233,6 @@ async function runCppcheckOnFileXML( const diagnostics: vscode.Diagnostic[] = []; for (const e of errors) { - console.log('e', e); const locations = e.location || []; if (!locations.length) { continue; @@ -292,4 +291,4 @@ async function runCppcheckOnFileXML( } // This method is called when your extension is deactivated -export function deactivate() {} \ No newline at end of file +export function deactivate() {}