Can anyone point me at an application to display/view a rolling log file as it is being written to?

I know there are apps out there, but googling just gives me questions about writing to/creating the logs. [This is Windows, not Unix]

link|improve this question

I've tried Powershell: "get-content c:\log\logfile.log -Wait" but this doesn't appear to update dynamically – BlueChippy Oct 22 '10 at 9:57
feedback

4 Answers

up vote 1 down vote accepted

Baretail.

There is a free version if you don't mind a small delay while it displays the splash screen or you can pay $25 to remove the delay or $35 for BaretailPro which also allows you to search the log files.

I use BaretailPro on my own machine and the free version of Baretail if I am working on a customer's computer.

link|improve this answer
feedback

You could try the tail tool, with follow option.

link|improve this answer
feedback

Log4View can do that but it is commercial. Another idea would be to configure a UDP appender, then you can use log2console.

link|improve this answer
feedback
tail -f /path/to/log 

will show the last 10 or so lines of the log and then show you any new lines written to the log as they are written

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.