Merge pull request #84 from AeroNotix/patch-1

Remove syntax error from README (@AeroNotix)
This commit is contained in:
Peter Taoussanis 2014-10-06 14:34:04 +07:00
commit 1cd4b707eb
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ This is the biggest win over Java logging utilities IMO. Here's `timbre/example-
{:doc "Spits to `(:spit-filename :shared-appender-config)` file."
:min-level nil :enabled? false :async? false :rate-limit nil
:fn (fn [{:keys [ap-config output]}] ; Use any appender args
(when-let [filename (:spit-filename ap-config)]ar
(when-let [filename (:spit-filename ap-config)]
(try (spit filename output :append true)
(catch java.io.IOException _))))}}})
```