Re: Adding debug traces to expressions

2017-06-03 Thread Bill Piel
Hi lvh, Author of sayid here. Couple questions: - would you want the debug traces to be available only during development? Or does this need to run in production too? - what editor are you using? or does the solution need to be editor-agnostic? Also, FWIW, Sayid does have features that allow

Re: Adding debug traces to expressions

2017-06-03 Thread lvh
And, immediately after I sent this, I remembered clojure.tools.trace; which also looks pretty similar :) On Sat, Jun 3, 2017 at 9:57 AM, lvh <_...@lvh.io> wrote: > Hi, > > > I have a piece of code that takes a limited subset of Clojure as queries, > e.g.: > > (not= (some gnarly expr)

Adding debug traces to expressions

2017-06-03 Thread lvh
Hi, I have a piece of code that takes a limited subset of Clojure as queries, e.g.: (not= (some gnarly expr) (some-other-gnarly-expr)) It also produces the result, which is interesting when the query is just (some gnarly expr) and the result itself is interesting, but less interesting when the