NSLog 与 Coda 的插件开发
我刚刚开始尝试为 Coda 编写插件。
现在,我一生都无法弄清楚 NSLog 如何或在哪里输出以进行调试。当 Coda 加载该插件时,它工作正常。所以我的问题是:
1)为了快速而肮脏,我应该使用带有应用程序插件的 NSLog 吗? 2)每次当我从另一个应用程序运行插件时从插件中调用 NSLog 时会发生什么?
谢谢!
I've just started and am attempting to write plug-ins for Coda.
Now, I can't for the life of me i can't figure out how or where NSLog's get outputted for debugging. When the plugin is loaded by Coda, it works fine. So my question is:
1) for the quick and dirty, should I be using NSLog w/ an app plugin?
2) what happens everytime I call NSLog from within a plugin while it's running from another app?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
Console.app
中查找它,您可以在其中查看大多数日志文件。插件通常加载到应用程序的代码中,因此具有相同的
stdout
。它们打印到与应用程序相同的文件。Look for it in
Console.app
, that's where you can look at most log files.Plugins are normally loaded into the application's code and therefore have the same
stdout
. They print to the same file as the application does.