hk: remove unnecessary check against `format` msg args

This commit is contained in:
Peter Taoussanis 2013-12-19 17:16:42 +07:00
parent e775711355
commit ef921d5662
1 changed files with 1 additions and 2 deletions

View File

@ -291,8 +291,7 @@
(assoc :message
(when-not (empty? args)
(case msg-type
:format (if-not (next args) (str args)
(apply format args))
:format (apply format args)
:print-str (apply print-str args)
:nil nil)))))
juxtfn-args (assoc juxtfn-args :timestamp (timestamp-fn instant))