Re: binding inside loop

2009-05-12 Thread Vincent Akkermans
Ah, I see. :) Thanks for your quick reply. Vincent On May 11, 8:54 pm, Rich Hickey richhic...@gmail.com wrote: On May 11, 2:20 pm, Vincent Akkermans vincent.akkerm...@gmail.com wrote: Hi all, I'm building an application in which I want some function calls to be logged. However,

binding inside loop

2009-05-11 Thread Vincent Akkermans
Hi all, I'm building an application in which I want some function calls to be logged. However, when I have function A and B (both will be logged) and A is called from B, I want the log to show this relation. I defined a small macro for this purpose: (def *hierarchy* []) (def *action-id* nil)

Re: binding inside loop

2009-05-11 Thread Rich Hickey
On May 11, 2:20 pm, Vincent Akkermans vincent.akkerm...@gmail.com wrote: Hi all, I'm building an application in which I want some function calls to be logged. However, when I have function A and B (both will be logged) and A is called from B, I want the log to show this relation. I