Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Jul 23, 2024
1 parent be0b962 commit be9b31a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/kernels/execution/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@ export class NotebookCellStateTracker {

export function traceCellMessage(cell: NotebookCell, message: string | (() => string)) {
let messageToLog = typeof message === 'string' ? () => message : message;
logger.trace(
`Cell Index:${cell.index}, of document ${uriPath.basename(
cell.notebook.uri
)} with state:${NotebookCellStateTracker.getCellStatus(cell)}, exec: ${cell.executionSummary
?.executionOrder}. ${messageToLog()}. called from ${getExtensionSpecificStack()}`
);
logger.ci(
() =>
`Cell Index:${cell.index}, of document ${uriPath.basename(
Expand Down

0 comments on commit be9b31a

Please sign in to comment.