将命令记录器输出保存到日志文件和控制台
Saving command logger output to log file and console
我写了一个非常简单的测试命令,在其构造函数中注入了 LoggerInterface
。
我应该如何更改 monolog.yaml
配置以将此记录器输出保存到日志文件并将其输出到控制台?
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
formatter: monolog.line.formatter
handler: terminal
excluded_http_codes: [404, 405]
buffer_size: 50 # How many messages should be saved? Prevent memory leaks
terminal:
type: stream
path: "php://stderr"
level: debug
console:
type: console
process_psr_3_messages: false
channels: [ "!event", "!doctrine" ]
您可以使用“组”处理程序https://github.com/symfony/monolog-bundle/blob/master/DependencyInjection/Configuration.php#L137
在此处检查实现 https://symfony.com/doc/current/logging/monolog_email.html
您可以像终端处理程序一样执行此操作。复制终端处理程序并设置文件路径。两个处理程序都将被执行。
monolog:
handlers:
main:
...
terminal:
...
terminal_file:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%-terminal.log"
level: debug
您也可以这样做,将不同的频道记录到不同的文件中。
有时我使用它,通过添加学说通道将学说调试消息记录到不同的文件。
monolog:
handlers:
...
doctrine_debug:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%-doctrine.log"
level: debug
channels: ["doctrine"]
默认情况下,命令始终为 stderr(如果指定 -vvv 选项)
如果您只需要在发生错误(堆栈错误)时将日志写入文件,您可以使用 finger_crossed 处理程序:
handlers:
main:
# fingers_crossed allow to log only if action_level defined is reach
type: fingers_crossed
# minimum level to activate the handler
# available level (emergency|alert|critical|error|warning|notice|info|debug){1}
action_level: error
# wrapped handler's name
handler: nested
nested:
# stream allow to write log in file
type: stream
# path to the log file
path: "%kernel.logs_dir%/%project_name%_%kernel.environment%.log"
# available level (emergency|alert|critical|error|warning|notice|info|debug){1}
level: debug
如果您想稍微过滤一下 stderr 中显示的日志,您可以使用控制台的默认配置:
console:
type: console
process_psr_3_messages: false
channels: ['!event', '!doctrine', '!console']
我会让你有更好的控制台日志(并避免太多“无用”的日志,例如非常冗长的事件或学说)
我写了一个非常简单的测试命令,在其构造函数中注入了 LoggerInterface
。
我应该如何更改 monolog.yaml
配置以将此记录器输出保存到日志文件并将其输出到控制台?
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
formatter: monolog.line.formatter
handler: terminal
excluded_http_codes: [404, 405]
buffer_size: 50 # How many messages should be saved? Prevent memory leaks
terminal:
type: stream
path: "php://stderr"
level: debug
console:
type: console
process_psr_3_messages: false
channels: [ "!event", "!doctrine" ]
您可以使用“组”处理程序https://github.com/symfony/monolog-bundle/blob/master/DependencyInjection/Configuration.php#L137
在此处检查实现 https://symfony.com/doc/current/logging/monolog_email.html
您可以像终端处理程序一样执行此操作。复制终端处理程序并设置文件路径。两个处理程序都将被执行。
monolog:
handlers:
main:
...
terminal:
...
terminal_file:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%-terminal.log"
level: debug
您也可以这样做,将不同的频道记录到不同的文件中。 有时我使用它,通过添加学说通道将学说调试消息记录到不同的文件。
monolog:
handlers:
...
doctrine_debug:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%-doctrine.log"
level: debug
channels: ["doctrine"]
默认情况下,命令始终为 stderr(如果指定 -vvv 选项)
如果您只需要在发生错误(堆栈错误)时将日志写入文件,您可以使用 finger_crossed 处理程序:
handlers:
main:
# fingers_crossed allow to log only if action_level defined is reach
type: fingers_crossed
# minimum level to activate the handler
# available level (emergency|alert|critical|error|warning|notice|info|debug){1}
action_level: error
# wrapped handler's name
handler: nested
nested:
# stream allow to write log in file
type: stream
# path to the log file
path: "%kernel.logs_dir%/%project_name%_%kernel.environment%.log"
# available level (emergency|alert|critical|error|warning|notice|info|debug){1}
level: debug
如果您想稍微过滤一下 stderr 中显示的日志,您可以使用控制台的默认配置:
console:
type: console
process_psr_3_messages: false
channels: ['!event', '!doctrine', '!console']
我会让你有更好的控制台日志(并避免太多“无用”的日志,例如非常冗长的事件或学说)