Reputation: 2418
I'm looking for a tool like EurekaLog for Delphi, but that works in Java.
What is the best option?
Upvotes: 1
Views: 257
Reputation: 1832
As there are surely visitors comming here looking for a solution for android (like me), I additionally would like to point to ACRA, an android-only equivalent.
Upvotes: 1
Reputation: 29339
I am not very knowledgeable with EurekaLog, but for what I have read, it is a sophisticated exception trace utility.
In java, I use Log4j. Capturing the complete stack trace at exception is as easy as log.error("description",exception)
Upvotes: 3
Reputation: 4342
In Java you always have stacktrace with error information. And you just can include some logging tool like log4j.
Upvotes: 5