Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the Apache Commons Tailer API to monitor the log files.

Whenever I restart the application, old log messages are also displayed. Instead only new log messages should get displayed.

How do I avoid this behavior of getting the old log messages?

share|improve this question

1 Answer

up vote 1 down vote accepted

Did you use the 4-argument Tailer constructor and pass true for the last argument (end)? This should make sure that only new lines are returned.

share|improve this answer
ya ...its working fine ...Thanks a lot... – ssbecse May 5 '11 at 13:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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