metosin / malli

High-performance data-driven data specification library for Clojure/Script.
Eclipse Public License 2.0
1.44k stars 204 forks source link

trivial: make instrumentation less spammy #920

Closed jasonjckn closed 11 months ago

jasonjckn commented 11 months ago

i have a lot of vars, and my unit test output is spammed with '..instrumented', perhaps we can move this to clojure.tools.logging trace? (or just delete it. )

https://github.com/metosin/malli/blob/master/src/malli/instrument.clj#L29

jasonjckn commented 11 months ago

In retrospect, I guess

(with-out-str
    (malli.dev/start! {:report m.x/thrower-no-color}))

gets rid of 90% of it, feel free to close.

aiba commented 9 months ago

with-out-str doesnt' seem to work for me, I still get a zillion "instrumented 1 vars" strings printed to stdout.

I would love for instrumentation to be less spammy as well!