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.
有什么方法可以删除 log4php 中的旧日志?或者日志在特定时间后被删除?
如果您使用 plain LoggerAppenderFile,那么轮换日志文件由您决定,这可能是一件好事,因为它可以在不影响正在运行的 PHP 应用程序的情况下完成。
LoggerAppenderFile
如果您希望 log4php 执行此操作,请使用LoggerAppenderRollingFile(在一定大小后创建一个新的日志文件,并删除最旧的旋转文件)或LoggerAppenderDailyFile(根据时间创建一个新文件)。
LoggerAppenderRollingFile
LoggerAppenderDailyFile