在 Symfony 命令执行期间,我想将消息记录到不同的文件中。我已经阅读了 Symfony 和 Monolog 文档,它应该像我在这里描述的那样工作。(请注意,我知道来自 'doctrine'、'event'、... 频道的消息仍将由主处理程序记录,但这对我来说并不重要)
在我的config.yml
,我有这个:
monolog:
channels: [commandline]
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.main.log"
level: debug
channels: [!commandline]
commandline:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.commandline.log"
level: debug
channels: commandline
stdout:
type: stream
path: "php://stdout"
level: debug
channels: commandline
mail:
type: stream
action_level: alert
handler: buffered_mail
buffered_mail:
type: buffer
handler: swift
swift:
type: swift_mailer
from_email: some@email.com
to_email: some@email.com
subject: "Something went wrong"
level: alert
我期望有 2 个日志文件:dev.main.log
和dev.commandline.log
. 但我仍然有第三个日志文件:dev.log
记录所有消息。我似乎没有找到该日志处理程序的定义位置以及如何防止它记录事情......
如果有人能指出我正确的方向,那就太好了!
顺便说一句,我正在使用:
- symfony 2.3
- 独白捆绑 2.4
编辑
中没有monolog
部分config_dev.yml