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.
我想在 symfony2 应用程序中使用 Monolog 进行日志记录,但我的问题是如何每天拆分文件而不是附加到同一个文件?
我希望我的日志文件如下所示:
"%kernel.logs_dir%/%kernel.environment%.%date%.log"
其中 %date% 应替换为实际日期。
这就是您通常使用logrotate来...
...但您可以调整内置的RotatingFileHandler来实现您的目标。