Back

set-config! (clj)

(source)

function

(set-config! config)

Examples

liquidz/jubot
(ns jubot.brain.redis-test
  (:require
    [com.stuartsierra.component :as component]
    [jubot.brain.redis :refer :all]
    [taoensso.timbre      :as timbre]
    [taoensso.carmine  :as car]
    [conjure.core      :refer [stubbing]]
    [clojure.test      :refer :all]))

(def ^:private brain (map->RedisBrain {}))
(timbre/set-config!
  [:appenders :standard-out :enabled?] false)
Kah0ona/re-dnd
(ns re-dnd.core
  (:require [taoensso.timbre :as timbre]))


(timbre/set-config! log-config)
onyx-platform/onyx-datomic
(ns onyx.plugin.log-config
  (:require [taoensso.timbre :as log]))

(log/set-config! {:ns-blacklist ["org.apache.http.*"]})
circlespainter/blazar
(ns ^{ :author "circlespainter" } blazar.http.test
  (:refer-clojure :exclude [promise await])
  (:use
    clojure.test)
  (:require
    [clojure.stacktrace :as stcktrc]
    [clojure.string :as str]
    [blazar.http.server :as bs]
    [blazar.http.client :as bc]
    [co.paralleluniverse.pulsar.core :as pc]
    [taoensso.timbre :as timbre]))

(timbre/set-config! [:timestamp-pattern] "yyyy-MMM-dd HH:mm:ss.SSS ZZ")
(timbre/set-level! :info)