追踪歌剧《蜻蜓》

发布于 2024-08-07 05:01:02 字数 197 浏览 8 评论 0原文

我正在 Windows PC 上使用 Opera 并为设备进行开发。我可以远程登录设备并手动运行浏览器,从而获得浏览器输出。

是否可以将消息跟踪到 Dragonfly 和 Opera 控制台?我可以看到控制台中显示 window.alert() 消息,但我还想跟踪消息,以便在 PC 上的 Dragonfly 和设备上的 Opera 中进行更简单的调试和状态跟踪。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

☆獨立☆ 2024-08-14 05:01:02
function debug(text) {
  ((window.console && console.log) ||
   (window.opera && opera.postError) ||
   window.alert).call(this, text);
}

我不确定这会解决你的问题(我对 Dragonfly 没有太多经验),但似乎 opera.postError 是 Opera 上控制台登录的通用 API 调用。

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.

梦亿 2024-08-14 05:01:02

console.log 将在 Opera 和 Opera 11 中的 Dragonfly 中工作。我们添加了对 Firebug 中的控制台和命令行 API 的支持。请参阅 http://my.opera.com /dragonfly/blog/getting-opera-dragonfly-ready-for-opera-11/ 了解更多信息。

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/getting-opera-dragonfly-ready-for-opera-11/ for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文