From aaa7b566ad351ca13eeff628941ac3c70cef95a2 Mon Sep 17 00:00:00 2001 From: scheinriese Date: Thu, 12 Mar 2026 10:54:09 +0100 Subject: [PATCH] Remove console debug block in favor of existing log/error call Co-Authored-By: Claude Opus 4.6 --- src/main/frontend/modules/shortcut/core.cljs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main/frontend/modules/shortcut/core.cljs b/src/main/frontend/modules/shortcut/core.cljs index c0b7defee9..beac40f136 100644 --- a/src/main/frontend/modules/shortcut/core.cljs +++ b/src/main/frontend/modules/shortcut/core.cljs @@ -94,15 +94,6 @@ (log/debug :shortcut/chord-prefix-clash {:id id :binding k}) ;; Unexpected conflict: log full debug info for investigation. (do - (let [tree (.-shortcuts_ handler) - undec-k (shortcut-utils/undecorate-binding k)] - (js/console.group "SHORTCUT CONFLICT DEBUG") - (js/console.warn "ID:" (str id)) - (js/console.warn "Binding:" k "→" undec-k) - (js/console.warn "Error:" (.-message e)) - (js/console.warn "Handler tree keys:" (js/Object.keys tree)) - (js/console.warn "Full tree:" (js/JSON.stringify tree js/undefined 2)) - (js/console.groupEnd)) (log/error :shortcut/register-shortcut {:id id :binding k :error e})