Re: Trouble with dotrace

2012-10-03 Thread justinhj
Thanks for the info Luc I'm fine with trace, that works for me. Justin On Tuesday, October 2, 2012 10:25:13 PM UTC-7, justinhj wrote: > > I'm trying to use dotrace from clojure.tools and having some trouble. > > Here's my leiningen project file > > (defproject test1 "1.0.0-SNAPSHOT" > :descri

Re: Trouble with dotrace

2012-10-03 Thread Softaddicts
Hi, dotrace is used to trace fns by rebinding their vars and providing a list of expressions to be traces in a restricted scope. Like this: (dotrace [my-add] (my-add 4 6) (my-add 7 3)) I played with it but now it's pretty useless because how vars are handled in 1.4. Not even sure if it works i

Trouble with dotrace

2012-10-03 Thread justinhj
I'm trying to use dotrace from clojure.tools and having some trouble. Here's my leiningen project file (defproject test1 "1.0.0-SNAPSHOT" :description "test1" :dependencies [[org.clojure/clojure "1.4.0"] ]] :dev-dependencies [ [swank-clojure "1.3.3"]