Daniel Grillo
Daniel Grillo

Reputation: 2418

Eurekalog for Java

I'm looking for a tool like EurekaLog for Delphi, but that works in Java.

What is the best option?

Upvotes: 1

Views: 257

Answers (3)

Alois Heimer
Alois Heimer

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

PA.
PA.

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

Nazarii Bardiuk
Nazarii Bardiuk

Reputation: 4342

In Java you always have stacktrace with error information. And you just can include some logging tool like log4j.

Upvotes: 5

Related Questions