We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cae50d commit 999588eCopy full SHA for 999588e
src/status_im2/common/log.cljs
@@ -1,11 +1,11 @@
1
(ns status-im2.common.log
2
(:require [clojure.string :as string]
3
+ [native-module.core :as native-module]
4
[re-frame.core :as re-frame]
5
+ [status-im.utils.types :as types]
6
[status-im2.config :as config]
7
[taoensso.timbre :as log]
- [utils.re-frame :as rf]
- [native-module.core :as native-module]
8
- [status-im.utils.types :as types]))
+ [utils.re-frame :as rf]))
9
10
(def logs-queue (atom #queue []))
11
(def max-log-entries 1000)
@@ -28,6 +28,7 @@
28
:mobile-system? false
29
:log-level level
30
:callback handle-error}]
31
+ (log/merge-config! {:ns-whitelist ["*"]})
32
(if (string/blank? level)
33
(native-module/init-status-go-logging (merge logging-params {:log-level "WARN"}))
34
(do
0 commit comments