mirror of https://github.com/status-im/timbre.git
Include `p`, `p*` in `refer-timbre` imports
This commit is contained in:
parent
85a30fb918
commit
f0b1de333e
|
@ -1,6 +1,7 @@
|
|||
## Pending / unreleased
|
||||
|
||||
* NEW: Add `profiling/p*` macro.
|
||||
* CHANGE: Include `p`, `p*` in `refer-timbre` imports.
|
||||
|
||||
|
||||
## v3.1.3 / 2014 Mar 11
|
||||
|
|
|
@ -42,7 +42,8 @@ The `refer-timbre` call is a convenience fn that executes:
|
|||
:refer (log trace debug info warn error fatal report
|
||||
logf tracef debugf infof warnf errorf fatalf reportf
|
||||
spy logged-future with-log-level sometimes)])
|
||||
(require '[taoensso.timbre.profiling :as profiling :refer (pspy pspy* profile defnp)])
|
||||
(require '[taoensso.timbre.profiling :as profiling
|
||||
:refer (pspy pspy* profile defnp p p*)])
|
||||
```
|
||||
|
||||
### Logging
|
||||
|
|
|
@ -497,7 +497,8 @@
|
|||
logf tracef debugf infof warnf errorf fatalf reportf
|
||||
spy logged-future with-log-level sometimes)])
|
||||
(require
|
||||
'[taoensso.timbre.profiling :as profiling :refer (pspy pspy* profile defnp)])"
|
||||
'[taoensso.timbre.profiling :as profiling
|
||||
:refer (pspy pspy* profile defnp p p*)])"
|
||||
[]
|
||||
(require
|
||||
'[taoensso.timbre :as timbre
|
||||
|
@ -505,7 +506,8 @@
|
|||
logf tracef debugf infof warnf errorf fatalf reportf
|
||||
spy logged-future with-log-level sometimes)])
|
||||
(require
|
||||
'[taoensso.timbre.profiling :as profiling :refer (pspy pspy* profile defnp)]))
|
||||
'[taoensso.timbre.profiling :as profiling
|
||||
:refer (pspy pspy* profile defnp p p*)]))
|
||||
|
||||
;;;; Deprecated
|
||||
|
||||
|
|
Loading…
Reference in New Issue