Skip to content

Commit 929a93a

Browse files
committed
remove console logs
1 parent 2b47e8f commit 929a93a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/language/commands/generators/PlantUMLGenerator.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export class PlantUMLGenerator implements ContextMapperGenerator {
1010
// there must not be any extra spaces especially at the start, since the path will be treated as relative otherwise
1111
const destination = (args[0] as string)?.trim()
1212
if (destination == null || destination === '') {
13-
console.log('Destination must be specified')
1413
throw Error('Destination must be specified')
1514
}
1615

src/language/semanticTokens/ContextMapperDslSemanticTokenProvider.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ export class ContextMapperDslSemanticTokenProvider extends AbstractSemanticToken
1414
const semanticTokenProvider = this.semanticTokenProviderRegistry.get(node)
1515
if (semanticTokenProvider) {
1616
semanticTokenProvider.highlight(node, acceptor)
17-
} else {
18-
console.error('Node type with no token provider', node.$type)
1917
}
2018
}
2119
}

0 commit comments

Comments
 (0)