Skip to content

Commit

Permalink
[#319] Fix spit-appender :append option typo (@dimovich)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimovich authored and ptaoussanis committed Sep 23, 2020
1 parent 868668e commit cb361d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taoensso/timbre/appenders/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
(let [{:keys [output_]} data]
(try
(when locking? (monitor-enter lock))
(with-open [^java.io.BufferedWriter w (jio/writer fname :append? append?)]
(with-open [^java.io.BufferedWriter w (jio/writer fname :append append?)]
(.write w ^String (force output_))
(.newLine w))

Expand Down

0 comments on commit cb361d7

Please sign in to comment.