Add BDC spark connection logging (#17277)

* Add BDC spark connection logging

* fix test failures
This commit is contained in:
Charles Gagnon
2021-10-05 20:23:38 -07:00
committed by GitHub
parent 2750dc0fe0
commit 747b8e84a8
3 changed files with 44 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ import { RemoteBookDialogModel } from './dialog/remoteBookDialogModel';
import { IconPathHelper } from './common/iconHelper';
import { ExtensionContextHelper } from './common/extensionContextHelper';
import { BookTreeItem } from './book/bookTreeItem';
import Logger from './common/logger';
const localize = nls.loadMessageBundle();
@@ -30,7 +31,7 @@ export async function activate(extensionContext: vscode.ExtensionContext): Promi
IconPathHelper.setExtensionContext(extensionContext);
const appContext = new AppContext(extensionContext);
Logger.initialize(appContext.outputChannel);
// TODO: Notebook doesn't work without root setting enabled in web mode. Once we start using non-root containers, we can remove this code.
const config = vscode.workspace.getConfiguration('notebook');
if (vscode.env.uiKind === vscode.UIKind.Web) {