As I interact with my AJAX based application at RUNTIME I\'d like the console to spit out all the functions it\'s calling. (so no stack trace, or breakpoints, or pr
Maybe you can have JavaScript do some of the work of adding console.log for you:
Adding console.log to every function automatically
Also this blog by Paul Irish might help:
http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
It includes a link to some JavaScript specifically targeted at logging arguments:
http://pastie.org/1033665