Live javascript debugging by recording function calls and parameters [duplicate]
This question already has an answer here: Can I override the Javascript Function object to log all function calls? 6 answers Is there a debugging system that allows me to record javascript function calls and their parameters as they occur? this would allow me to trace and debug applications in live/client situations without the performance hit due to manual logging. Edit: I'm not talking about manually calling functions using a 'console' window and viewing the results, or manually adding 'trace' or 'log' commands into my javascript. I need it to work with any running javascript. Can you