Renato Dinhani
Renato Dinhani

Reputation: 36766

There is an interface/GUI appender for log4j?

I want to show my logs in the GUI in a textfield, list, etc. (something like ImgBurn), but I not found a ready appender that do this. There are an appender to do this?

Currently I doing log to the console without any problems.

Upvotes: 3

Views: 5246

Answers (5)

Jian Chen
Jian Chen

Reputation: 596

Try Glasswall, which appends the log contents on the page if you are running a servlet.

http://code.google.com/p/glasswall/

Upvotes: 0

KrzyH
KrzyH

Reputation: 4326

I can recommend you OtrosLogViewr. It can tail logs from running applications even on remote servers (using SFTP, FTP, Samba)

Upvotes: 1

Scott
Scott

Reputation: 1736

Check out the latest developer snapshot of Chainsaw - tons of new features, and when configured to process log files via VFSLogFilePatternReceiver, can tail log files, even between app restarts.

There are a ton of new features in this version compared with the currently-released one - some of the more helpful include search results that are highlighted and aggregated in a table, and the ability to annotate events (click in the 'marker' field)

http://people.apache.org/~sdeboy

Upvotes: 0

Salman A. Kagzi
Salman A. Kagzi

Reputation: 4063

There are some good tools available for Free (paid as well) that can parse your log files and present them in better formats with lots of filtering and reporting options as well.

Here is a good list of such tools

Are you looking for a real time log viewer?

Upvotes: 1

Femi
Femi

Reputation: 64710

Take a look at Apache Chainsaw: this can use the Receiver concept from the recent Log4j builds to display events: http://logging.apache.org/chainsaw/index.html.

If you are looking to do real-time text field display you may need to write your own Receiver class.

Upvotes: 4

Related Questions