When I'm debugging JavaScript code in Opera browser, the console is always displaying messages with the Info icon labelled as "2 got message" in the JavaScript tab:

2 got message        Event thread: message        Event thread: message
2 got message        Event thread: message        Event thread: message
2 got message        Event thread: message        Event thread: message

There's nothing clickable on them and I've unable to find a single Google result.

What do these info lines mean?

link|improve this question

Could it be window.postMessage, e.g., in a frame? developer.mozilla.org/en/DOM/window.postMessage – Boldewyn Nov 14 '11 at 10:03
@Boldewyn - The code is not using it, not at least on purpose. I couldn't find the postMessage string in the source code. – Álvaro G. Vicario Nov 14 '11 at 10:17
maybe there are console.info calls ? – c69 Nov 18 '11 at 13:51
@c69 - Certainly not. – Álvaro G. Vicario Nov 18 '11 at 16:33
are you getting anything similar in WebInspector or Firebug ? // have you tried step-by-step execution of scripts, to see after what event those messages appear ? – c69 Nov 21 '11 at 0:51
feedback

1 Answer

The most likely answer - although I'm just guessing - is that there's some debug code hidden away that uses opera.postError() to insert messages in the error console.

Try disabling User JavaScripts / extensions, even browser.js..?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.