Skip to content

Commit

Permalink
README: remove mention of (deprecated) log-env
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Oct 27, 2016
1 parent 901562f commit 4958ebe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -60,16 +60,16 @@ And setup your namespace imports:
(ns my-clj-ns ; Clojure namespace
(:require
[taoensso.timbre :as timbre
:refer (log trace debug info warn error fatal report
:refer [log trace debug info warn error fatal report
logf tracef debugf infof warnf errorf fatalf reportf
spy get-env log-env)]))
spy get-env]]))

(ns my-cljs-ns ; ; ClojureScript namespace
(:require
[taoensso.timbre :as timbre
:refer-macros (log trace debug info warn error fatal report
:refer-macros [log trace debug info warn error fatal report
logf tracef debugf infof warnf errorf fatalf reportf
spy get-env log-env)]))
spy get-env]]))
```

> You can also call `(timbre/refer-timbre)` to configure Clj ns referrals **automatically**.
Expand Down

0 comments on commit 4958ebe

Please sign in to comment.