Skip to content

Commit

Permalink
Removed unused console.logs
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>
  • Loading branch information
pascalwilbrink committed Sep 12, 2023
1 parent 3385dba commit 309d341
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/compas/CompasNsdoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -69,7 +68,6 @@ export async function loadNsdocFiles(component: Element): Promise<void> {
);
})
.catch(reason => {
console.log('reason: ', reason);
createLogEvent(component, reason);
});
}

0 comments on commit 309d341

Please sign in to comment.