From 024697ff870cf3f41f4ace749618f3bb36328de6 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 21 Oct 2025 13:49:34 +0200 Subject: [PATCH] :sparkles: Add cause stack trace logging on ui error boundary --- frontend/src/app/main/ui/error_boundary.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/main/ui/error_boundary.cljs b/frontend/src/app/main/ui/error_boundary.cljs index f34f009413..3ccec2101a 100644 --- a/frontend/src/app/main/ui/error_boundary.cljs +++ b/frontend/src/app/main/ui/error_boundary.cljs @@ -34,6 +34,7 @@ ;; very small amount of time, so we debounce for 100ms for ;; avoid duplicate and redundant reports (gfn/debounce (fn [error info] + (js/console.log "Cause stack: \n" (.-stack error)) (js/console.error "Component trace: \n" (unchecked-get info "componentStack")