Skip to content

Commit 6072717

Browse files
authored
VSCODE-90: Remove heartbeats from logger (#83)
1 parent ec33367 commit 6072717

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ const log = createLogger('extension.ts');
1111
* etc. and write them to the extension's log output channel too.
1212
*/
1313
import debug from 'debug';
14-
debug.enable('*');
14+
debug.enable('INFO');
15+
debug.enable('ERROR');
16+
debug.enable('WARN');
1517
debug.log = log.debug.bind(log);
1618

1719
import MDBExtensionController from './mdbExtensionController';

0 commit comments

Comments
 (0)