Skip to content

Commit 3663375

Browse files
committed
Remove console.log
1 parent 30b1d2a commit 3663375

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.11.1
4+
5+
- Remove `console.log` from EarlyFinalisation code path
6+
37
## 0.11.0
48

59
- Add initial implementation for `concept/lasagna`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@exercism/javascript-analyzer",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "Exercism analyzer for javascript",
55
"repository": "https://github.com/exercism/javascript-analyzer",
66
"author": "Derk-Jan Karrenbeld <[email protected]>",

src/analyzers/IsolatedAnalyzerImpl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export abstract class IsolatedAnalyzerImpl implements Analyzer {
6161
// The isolated analyzer output can use exceptions as control flow.
6262
// This block here explicitly accepts this.
6363
if (err instanceof EarlyFinalization) {
64-
console.log(output)
6564
this.logger.log(`=> early finalization (${output.summary || '-'})`)
6665
} else {
6766
throw err

0 commit comments

Comments
 (0)