From 867dbf33dcec01c63c8df36ae8a61814a0ef85fb Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Fri, 25 Feb 2022 21:51:15 +0100 Subject: [PATCH] dont log --- repl/src/useRepl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repl/src/useRepl.ts b/repl/src/useRepl.ts index 4bf6b1b5..29824916 100644 --- a/repl/src/useRepl.ts +++ b/repl/src/useRepl.ts @@ -47,7 +47,7 @@ function useRepl({ tune, defaultSynth, autolink = true, onEvent }: any) { // logs events of cycle const logCycle = (_events: any, cycle: any) => { if (_events.length) { - pushLog(`# cycle ${cycle}\n` + _events.map((e: any) => e.show()).join('\n')); + // pushLog(`# cycle ${cycle}\n` + _events.map((e: any) => e.show()).join('\n')); } }; // cycle hook to control scheduling