Is there a way to get the stack trace of an exception in form of a String in Blackberry?

前端 未结 1 1100
清歌不尽
清歌不尽 2020-12-11 06:04

I want to log the stack trace of exceptions into a file. Is there a way that I can get the stack trace in form of a String, or somehow make ex.printStackT

相关标签:
1条回答
  • 2020-12-11 06:24

    BlackBerry only provides stack traces when you catch a Throwable. So you should be able to use printStackTrace and friends if you change the catch type.

    EDIT Sorry, I misread your question -- thanks for the comment. No, there's no way to get the stack trace in a String object. There is a support forum thread from January 2010 that covers this - Stack Trace Capture (sorely needed). Nothing has changed since then.

    If you need this for development, you can extract the event log from the device, which includes stack traces. But that doesn't help sort out production issues.

    0 讨论(0)
提交回复
热议问题