This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-10-19
Channels
- # announcements (5)
- # babashka (13)
- # beginners (62)
- # calva (46)
- # cider (24)
- # clj-kondo (4)
- # clojure (12)
- # clojure-europe (21)
- # clojure-hungary (1)
- # clojure-nl (1)
- # clojure-norway (18)
- # clojure-uk (6)
- # clojuredesign-podcast (4)
- # clojurescript (9)
- # conjure (1)
- # core-async (5)
- # datomic (3)
- # emacs (1)
- # holy-lambda (14)
- # hyperfiddle (36)
- # jobs-discuss (3)
- # joyride (7)
- # lsp (35)
- # om-next (1)
- # pedestal (11)
- # podcasts-discuss (1)
- # practicalli (2)
- # releases (3)
- # sci (17)
- # shadow-cljs (5)
- # testing (4)
- # tools-deps (10)
- # vim (2)
- # xtdb (5)
Are timbre appenders included in babashka? (ns concierto.core) (:require [taoensso.timbre :as timbre :refer [warn info]] [taoensso.timbre.appenders.core :as appenders])) results in ; java.io.FileNotFoundException: Could not locate taoensso/timbre/appenders/core.bb, taoensso/timbre/appenders/core.clj or taoensso/timbre/appenders/core.cljc on classpath. concierto.core /home/ritchie/Projects/concierto/concierto/src/concierto/core.clj:2:3 ; Evaluation of file core.clj failed: class java.io.FileNotFoundException I can use warn and info fine, thanks.
don't jump to conclusions, I was asking a question to get more information about your use case. it is not there because the most common appenders are already in the core namespace: https://github.com/taoensso/timbre/blob/5c0d1652aebfe85222d20c0c886d365bb9f30859/src/taoensso/timbre.cljc#L1026
ah ok, i was going by the timbre docs on appenders, didn't notice there was another avenue, thanks
it might be good to add this appenders namespace to bb since you aren't the first to ask
I pushed a commit that will also expose these vars via taoensso.timbre.appenders.core