diff --git a/src/duct/module/logging.clj b/src/duct/module/logging.clj index 2ca012a..7556050 100644 --- a/src/duct/module/logging.clj +++ b/src/duct/module/logging.clj @@ -5,7 +5,7 @@ {:duct.logger/simple (ig/profile :repl {:appenders - [{:type :stdout, :timestamps? false, :levels #{:report}} + [{:type :stdout, :brief? true, :levels #{:report}} {:type :file, :path "logs/dev.log"}]} :test {:appenders [{:type :file, :path "logs/test.log"}]} diff --git a/test/duct/module/logging_test.clj b/test/duct/module/logging_test.clj index 1ea7eeb..8ccda32 100644 --- a/test/duct/module/logging_test.clj +++ b/test/duct/module/logging_test.clj @@ -13,6 +13,6 @@ (ig/expand config (ig/deprofile [:test])))) (is (= {:duct.logger/simple {:appenders - [{:type :stdout, :timestamps? false, :levels #{:report}} + [{:type :stdout, :brief? true, :levels #{:report}} {:type :file, :path "logs/dev.log"}]}} (ig/expand config (ig/deprofile [:repl]))))))