I am using Opera on a Windows PC and developing for a device. I can telnet into the device and manually run the browser which gives me the browser output.

Is it possible to trace messages into both Dragonfly and the Opera console? I can see a window.alert() message show up in the console, but I would also like to trace messages for simpler debugging and status tracking both within Dragonfly on PC and Opera on the device.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
function debug(text) {
  ((window.console && console.log) ||
   (window.opera && opera.postError) ||
   window.alert).call(this, text);
}

I'm not positive this will solve your problems (I don't have much experience with Dragonfly) but it seems that opera.postError is the general API call for console logging on Opera.

link|improve this answer
1  
postError() might throw a "WRONG_THIS_ERROR" with that code.. but that was considered a bug and I hope we never released any versions with this issue.. – hallvors Dec 7 '10 at 6:36
feedback

console.log will work in Opera and Dragonfly from Opera 11. We added support for both the Console and the Command Line APIs from Firebug. See http://my.opera.com/dragonfly/blog/2010/12/03/getting-opera-dragonfly-ready-for-opera-11 for more information.

link|improve this answer
that link has gone 404 – zack May 1 at 14:57
feedback

Your Answer

 
or
required, but never shown

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