We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb85292 commit 6eb7606Copy full SHA for 6eb7606
src/logging.ts
@@ -3,8 +3,10 @@ import * as vscode from 'vscode';
3
import util from 'util';
4
5
class Logger implements ILogger {
6
- static channel: vscode.OutputChannel =
7
- vscode.window.createOutputChannel('MongoDB Extension');
+ static channel: vscode.LogOutputChannel = vscode.window.createOutputChannel(
+ 'MongoDB Extension',
8
+ { log: true }
9
+ );
10
11
private name: string;
12
0 commit comments