From fdfeef82fddc47fb9b7aee8073a0a3a0a7573dd8 Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Tue, 31 Jan 2023 12:37:25 -0500 Subject: [PATCH] Remove debugging print at require time from #8399 --- src/main/frontend/util.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/frontend/util.cljc b/src/main/frontend/util.cljc index a968ddb892..baf2109635 100644 --- a/src/main/frontend/util.cljc +++ b/src/main/frontend/util.cljc @@ -308,7 +308,6 @@ Use `cancel-fn` to cancel pending callback if there is" [f interval] (let [debouncer (Debouncer. f interval)] - (js/console.log debouncer) [(fn [& args] (.apply (.-fire debouncer) debouncer (to-array args))) (fn [] (.stop debouncer))])))