Skip to content

Commit

Permalink
Fix cljstyle and clj-kondo
Browse files Browse the repository at this point in the history
Co-authored-by: Iain Wood <iain.wood@flexiana.com>
  • Loading branch information
gmsvalente and Iain Wood committed Feb 28, 2024
1 parent 600262f commit 1b3361a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/xiana/logging.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(ns xiana.logging
(:require
[taoensso.timbre :as timbre]
[xiana.config :as config]))
[taoensso.timbre :as log]
[xiana.config :as config]))

(defn set-level
[cfg]
(when-let [level (-> (config/config) :logging/timbre-config :min-level)]
(timbre/set-min-level! level))
(log/set-min-level! level))
cfg)

0 comments on commit 1b3361a

Please sign in to comment.