>
>
> What do you want to customize?
>
I am trying to track *all* the UI events and log which functions (and line 
number of the function in the file) are executed. 
Suppose a button's click event is registered to the function click:

function click(){
  doit();
  doit2()
}
function doit(){
  doit3()
}



when the button is clicked I want to log
------
click
  doit
    doit3
  doit2
------
or at least:

------
click
doit
doit3
doit2
------
 

> Can we help you somehow, e.g. by offering some new APIs?
>
>
Yes of course. :) 

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/firebug.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/firebug/928f6053-b907-44ff-ac62-35e67528302e%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to