MCPcopy Index your code
hub / github.com/deepnote/deepnote / suppressMachineOutputDebugNoise

Function suppressMachineOutputDebugNoise

packages/cli/src/commands/run.ts:968–977  ·  view source on GitHub ↗
(isMachineOutput: boolean)

Source from the content-addressed store, hash-verified

966}
967
968function suppressMachineOutputDebugNoise(isMachineOutput: boolean): () => void {
969 const originalConsoleDebug = console.debug
970 if (isMachineOutput) {
971 console.debug = () => {}
972 }
973
974 return () => {
975 console.debug = originalConsoleDebug
976 }
977}
978
979async function startExecutionEngine(engine: ExecutionEngine, isMachineOutput: boolean): Promise<void> {
980 if (!isMachineOutput) {

Callers 1

runDeepnoteProjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected