This can happen if the javascript you are debugging is trying to write something to the console variable. As an example, I fixed the following code in a random javascript file:
console = {}; console.log ('asdfasdf');
After trying to install the console on an empty console.log object, it did nothing.
, , script , .