Skip to content

Commit d14af99

Browse files
committed
Fix logging to the console
1 parent 38e68ff commit d14af99

File tree

1 file changed

+1
-1
lines changed
  • packages/jupyterlab-lsp/src/adapters/notebook

1 file changed

+1
-1
lines changed

packages/jupyterlab-lsp/src/adapters/notebook/notebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class NotebookAdapter extends WidgetAdapter<NotebookPanel> {
148148
// there is no default action that would trigger this,
149149
// its just a failsafe in case if another extension decides
150150
// to swap the notebook model
151-
this.console.warn(
151+
console.warn(
152152
'Model changed, connecting cell change handler; this is not something we were expecting'
153153
);
154154
notebook.model.cells.changed.connect(this.handle_cell_change, this);

0 commit comments

Comments
 (0)