We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb15e7d commit ab1bbd9Copy full SHA for ab1bbd9
src/xiana/logging.clj
@@ -1,10 +1,9 @@
1
(ns xiana.logging
2
(:require
3
- [taoensso.timbre :as log]
4
- [xiana.config :as config]))
+ [taoensso.timbre :as log]))
5
6
(defn set-level
7
[cfg]
8
- (when-let [level (-> (config/config) :logging/timbre-config :min-level)]
+ (when-let [level (-> cfg :logging/timbre-config :min-level)]
9
(log/set-min-level! level))
10
cfg)
0 commit comments