From 78f62cc5e167c5db7433283e41349cc5842a3943 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 14 May 2023 18:53:37 +0200 Subject: [PATCH] :bug: Fix incorrect level for debug and trace log messages (cljs only) --- common/src/app/common/logging.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/app/common/logging.cljc b/common/src/app/common/logging.cljc index cc67daf1de..b1aff50c2c 100644 --- a/common/src/app/common/logging.cljc +++ b/common/src/app/common/logging.cljc @@ -144,8 +144,8 @@ (defn level->int [level] (case level - :debug 10 - :trace 20 + :trace 10 + :debug 20 :info 30 :warn 40 :error 50))