logging - log with timbre in clojure: how to set timestamp and local? -


i have following code.

   (timbre/merge-config! {:timestamp-pattern "yyyy/mm/dd hh:mm:ss zz" } )  (info (str "acm template deploy start..., version " version)) 

but timestamp format not want. how should set format?

 $ lein run compiling com.rockiedata.dw.acm.template.deploy 15-jun-25 22:13:00 unknownhost info [com.rockiedata.dw.acm.template.deploy] - acm template deploy start..., version 0.1 

and how set local, in document said

  :timestamp-locale  nil 

but how set chinese local?

based on documentation https://github.com/ptaoussanis/timbre should following :

(timbre/merge-config!    {:timestamp-opts      {:pattern "yyyy/mm/dd hh:mm:ss zz"       :locale (java.util.locale. "zh_cn")}}) 

Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -