We ran into an issue with console logging on IE, and we traced down to the isSupported() method in ConsoleLogHandler. Looks like the isSupported() method doesn't take into account IE's native console logging capabilities correctly. The method does the following check:
(typeof(window.console.log) == 'function')
... which fails on IE as window.console.log is an object.
I did a quick search for issues, but didn't find anything related ConsoleLogHandler.
Has anyone run into the same issue?
Thanks,
//Tomi B.