I'm trying to use dotrace function of clojure.tools.trace namespace.
(dotrace [my-function] (my-function 5))
But I got this error:
IllegalStateException Can't dynamically bind non-dynamic var: my-ns/my-function clojure.lang.Var.pushThreadBindings (Var.java:339)
What does it mean? why I'm getting it?
(I'm using Clojure 1.3)