Skip to content

Commit 9efd426

Browse files
committed
lower log level
1 parent 5b2cf58 commit 9efd426

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/notebooks/deepnote/deepnoteCellCopyHandler.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export class DeepnoteCellCopyHandler implements IExtensionSyncActivationService
139139
const editor = window.activeNotebookEditor;
140140

141141
if (!editor || !editor.notebook || editor.notebook.notebookType !== 'deepnote') {
142-
logger.warn(`copyCellAtOffset called for non-Deepnote notebook`);
142+
logger.debug(`copyCellAtOffset called for non-Deepnote notebook`);
143143
return;
144144
}
145145

@@ -303,7 +303,7 @@ export class DeepnoteCellCopyHandler implements IExtensionSyncActivationService
303303
const editor = window.activeNotebookEditor;
304304

305305
if (!editor || !editor.notebook || editor.notebook.notebookType !== 'deepnote') {
306-
logger.warn(`copyCellToClipboard called for non-Deepnote notebook`);
306+
logger.debug(`copyCellToClipboard called for non-Deepnote notebook`);
307307
return;
308308
}
309309

@@ -346,7 +346,7 @@ export class DeepnoteCellCopyHandler implements IExtensionSyncActivationService
346346
const editor = window.activeNotebookEditor;
347347

348348
if (!editor || !editor.notebook || editor.notebook.notebookType !== 'deepnote') {
349-
logger.warn(`pasteCellFromClipboard called for non-Deepnote notebook`);
349+
logger.debug(`pasteCellFromClipboard called for non-Deepnote notebook`);
350350
return;
351351
}
352352

0 commit comments

Comments
 (0)