Skip to content

Commit eb3b507

Browse files
remove more console.log statements
1 parent dc1065b commit eb3b507

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/documentation/DocumentationPreviewEditor.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,9 @@ export class DocumentationPreviewEditor implements vscode.Disposable {
6666
this.subscriptions.push(
6767
this.webviewPanel.webview.onDidReceiveMessage(this.receiveMessage.bind(this)),
6868
vscode.window.onDidChangeActiveTextEditor(editor => {
69-
console.log(`editor changed`);
7069
this.renderDocumentation(editor);
7170
}),
7271
vscode.window.onDidChangeTextEditorSelection(event => {
73-
console.log(`change kind:{${event.kind}}`);
7472
this.renderDocumentation(event.textEditor);
7573
}),
7674
this.webviewPanel.onDidDispose(this.dispose.bind(this))

0 commit comments

Comments
 (0)