From 309d341b6bc59ba89689c2adcde7363e6cc4689e Mon Sep 17 00:00:00 2001 From: Pascal Wilbrink Date: Tue, 12 Sep 2023 13:58:11 +0200 Subject: [PATCH] Removed unused console.logs Signed-off-by: Pascal Wilbrink --- src/compas/CompasNsdoc.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compas/CompasNsdoc.ts b/src/compas/CompasNsdoc.ts index a6ca5e99ce..f363f359a8 100644 --- a/src/compas/CompasNsdoc.ts +++ b/src/compas/CompasNsdoc.ts @@ -34,7 +34,6 @@ async function processNsdocFile( await CompasNSDocFileService() .getNsdocFile(id) .then(document => { - console.log('document: ', document); const nsdocContent = document.querySelectorAll('NsdocFile').item(0).textContent ?? ''; component.dispatchEvent(newLoadNsdocEvent(nsdocContent, filename)); @@ -69,7 +68,6 @@ export async function loadNsdocFiles(component: Element): Promise { ); }) .catch(reason => { - console.log('reason: ', reason); createLogEvent(component, reason); }); }