I am currently debugging a rather strange issue in an angular application on IE11 (Edge).
We are using a custom Logger which then writes everything that's necessary through angulars $log
Service into the console.
Now in IE11 we have the following behavior:
If we load the page (and thus initialize our Angular app) with the F12 tools open, there is no issue with logging. As soon as we close the F12 tools, subsequent logs apparently trigger a javascript error and no following JS-Code is executed. However since I can't debug it I don't know the error. The only reference I sometimes get when I reopen the devtools is an issue with browsertools.library.js
.
If we load the page with our F12 tools closed however, there is no issue at all, even when we open and close the F12 tools again.
This also doesn't happen with other browsers (e.g. Chrome).
Our Angular version is 1.2.18 (company policy...)
Thanks for any hint or solution. Chnoch