黑莓记录

发布于 2024-09-29 22:03:20 字数 76 浏览 2 评论 0原文

我正在为 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 技术交流群。

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

发布评论

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

评论(4

╰◇生如夏花灿烂 2024-10-06 22:03:20

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'

日久见人心 2024-10-06 22:03:20

内置 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.

蓝戈者 2024-10-06 22:03:20

我建议您实现自己的日志记录类,因为它提供了很大的灵活性,例如

1) 您可以使该类将输出发送到多个位置,以便您在使用调试器时可以更快地访问日志,例如

/**
 * Internal function to encapsulate event logging
 *
 * @param msg   - message to log
 * @param level - log level to use, e.g. EventLogger.DEBUG_INFO, 
 *                INFORMATION, WARNING, ERROR, SEVERE_ERROR
 */
private void makeLog(String msg, int level)
{
  // You can also manipulate logs here, e.g.
  // -add the Class and/or Application name
  // -truncate or remove repeat logs, etc

  // Log to phone event log
  EventLogger.logEvent(ID, msg.getBytes(), level);

  // In the debugger log to the console
  System.err.println(msg);    
} 

2) 为了方便起见,您可以添加具有可读名称的方法,以不同的严重级别进行日志记录,例如

public void debug(String msg)
{
  makeLog(msg, EventLogger.DEBUG_INFO);
}

然后您可以调用 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.

/**
 * Internal function to encapsulate event logging
 *
 * @param msg   - message to log
 * @param level - log level to use, e.g. EventLogger.DEBUG_INFO, 
 *                INFORMATION, WARNING, ERROR, SEVERE_ERROR
 */
private void makeLog(String msg, int level)
{
  // You can also manipulate logs here, e.g.
  // -add the Class and/or Application name
  // -truncate or remove repeat logs, etc

  // Log to phone event log
  EventLogger.logEvent(ID, msg.getBytes(), level);

  // In the debugger log to the console
  System.err.println(msg);    
} 

2) For convenience you can add methods with readable names that log at the different severity levels, e.g.

public void debug(String msg)
{
  makeLog(msg, EventLogger.DEBUG_INFO);
}

Then you can call MyLogClass.debug("debug message") or MyLogClass.warning("warning message"), which makes it clearer on the importance of the log.

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