Skip to content

Commit

Permalink
Remove trace level from UI
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmotta committed Dec 13, 2024
1 parent b7cd92c commit 9673eb4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/legacy/status_im/ui/screens/log_level_settings/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
name]]]]))

(def log-levels
"The status-go log library (zap) doesn't support the trace level, so we remove
the trace option from the UI. When trace is enabled an error will happen while
trying to login (user will see the error 'wrong password')."
[{:name "DISABLED"
:value ""}
{:name "ERROR"
Expand All @@ -42,9 +45,7 @@
{:name "INFO"
:value "INFO"}
{:name "DEBUG"
:value "DEBUG"}
{:name "TRACE"
:value "TRACE"}])
:value "DEBUG"}])

(views/defview log-level-settings
[]
Expand Down

0 comments on commit 9673eb4

Please sign in to comment.