黑莓记录
我正在为 BlackBerry 应用程序实现日志记录,以跟踪我的应用程序的流程。 BlackBerry 开发人员使用什么机制来做到这一点?
I am implementing logging for a BlackBerry app to track the flow of my application.
What mechanisms do BlackBerry developers use to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
EventLogger 是从一个值得尊敬的 API 开始。您可以通过按住“alt”并按“L”“G”“L”“G”来查看设备上的日志
The EventLogger is a respectable API to start with. You can view the log on the device by holding 'alt' and hitting 'L' 'G' 'L' 'G'
内置 EventLogger 的困难之一是没有编程方式可以读取它。
因此,我实现了自己的记录器并包含远程诊断功能。
One difficulty of the built in EventLogger is there's no programmatic way to read out of it.
For that reason I implemented my own logger and included remote diagnostic capability.
我建议您实现自己的日志记录类,因为它提供了很大的灵活性,例如
1) 您可以使该类将输出发送到多个位置,以便您在使用调试器时可以更快地访问日志,例如
2) 为了方便起见,您可以添加具有可读名称的方法,以不同的严重级别进行日志记录,例如
然后您可以调用
MyLogClass.debug("debug message")
或MyLogClass.warning("warning message")
,这使得日志的重要性更加清楚。I suggest you implement your own logging class as it provides lots of flexibility, e.g.
1) You can make the class send output to multiple locations so you can get quicker access to the logs when using a debugger, e.g.
2) For convenience you can add methods with readable names that log at the different severity levels, e.g.
Then you can call
MyLogClass.debug("debug message")
orMyLogClass.warning("warning message")
, which makes it clearer on the importance of the log.您可以使用该库https://sourceforge.net/projects/log4bb/
You can use the library https://sourceforge.net/projects/log4bb/