Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Apache Commons Tailer API 来监控日志文件。
每当我重新启动应用程序时,也会显示旧的日志消息。相反,应该只显示新的日志消息。
如何避免这种获取旧日志消息的行为?
您是否使用了4 参数Tailer构造函数并传递true了最后一个参数 ( end)?这应该确保只返回新行。
Tailer
true
end
最后一个参数记录如下:
设置为true从文件末尾false拖尾,从文件开头拖尾。
false