Log File Viewer for Java Applications

That's all, I studied whether there can be a tool that will help me with this:

  • Viewing the log file in reverse chronological order, that is, I want the last log entries to be written to the log file at the top of the screen, rather than scrolling all the way down every time the log file is updated.

  • may be paused while browsing, so while I am reading or analyzing my log files, it does not refresh the screen.

Is it possible?

I use log4j to enter my j2ee application. Thanks.

+6
source share
4 answers

You can use Apache Chainsaw . Although it does not seem to be actively developing, you can:

  • Toggle auto scroll down option. You can also order journal entries in reverse chronological order to display the most recent entries first, so the previous option is no longer required.
  • pause logging. This will cancel any log entries and will not update the display until collection resumes.
+3
source

You can use OtrosLogViewer . You can pause scrolling down and disable the addition of new log events. You can watch screen capture on YouTube .

Disclaimer I am the author of OtrosLogViewer

+5
source

Use LogMX from www.logmx.com . I worked with Chainsaw and LogFactor5, but LogMX costs money in the end. Use a chainsaw if you want something for free.

+1
source

Tick ​​mtail (or monkeytail). This is not exactly what you are looking for, but it may be worth a look.

View all your magazines with monkeytail

Some closed questions in SO:

0
source

Source: https://habr.com/ru/post/898010/


All Articles