Hi,
We are finding that a lot of our bugs are intermitant, difficult to replicate, and even harder to track down. This has us thinking that some means of logging the state of our application at various points would be a huge help when something goes wrong.
We tried using window.console.log(), and tracked what came out using Firefox's Firebug console, which worked a treat. However, it was causing problems in Internet Explorer (I don't think it supports console.log()?) so the logging was eventually removed from our codebase.
Our question is... is there a reliable way to spit out log messages in ExtJS that will work cross-browser? We notice people mentioning Ext.log() in some forum posts, but this doesn't seem to exist anymore:
http://www.sencha.com/forum/showthre...log-best-usage
Are there any alternatives? How do you guys track what goes wrong during tricky hard-to-replicate bugs?
Thanks,
CalmDownMonkey