README housekeeping

This commit is contained in:
Peter Taoussanis 2016-01-30 10:42:50 +07:00
parent 542d76ae23
commit acf9ee8563
1 changed files with 2 additions and 3 deletions

View File

@ -26,7 +26,7 @@ Timbre offers an **all Clojure/Script** alternative that **works out the box**.
* **Zero overhead** with **complete Clj+Cljs elision** for compile-time level/ns filters
* Useful built-in appenders for **out-the-box** Clj+Cljs logging
* Powerful, easy-to-configure per-appender **rate limits** and **async logging**
* [Logs as Clojure values] (v3+)
* [Logs as Clojure values][] (v3+)
* [tools.logging] support (optional, useful when integrating with legacy logging systems)
* Level and ns-filter aware **logging profiler**
* Small, simple, cross-platform codebase
@ -50,7 +50,6 @@ Add the necessary dependency to your project:
And setup your namespace imports:
```clojure
(ns my-clj-ns ; Clojure namespace
(:require
[taoensso.timbre :as timbre
@ -88,7 +87,7 @@ By default, Timbre gives you basic `println` and `js/console` (v4+) output at a
(trace "This won't print due to insufficient log level") => nil
```
First-argument exceptions generate a nicely cleaned-up stack trace using [io.aviso.exception] (Clj only):
First-argument exceptions generate a nicely cleaned-up stack trace using [io.aviso.exception][] (Clj only):
```clojure
(info (Exception. "Oh noes") "arg1" "arg2")