如何像格式化数组一样使用 monolog 记录多行条目?
How to log multiline entries with monolog like a formatted array?
我正在尝试在 symfony
中使用 monolog
记录数组。
$logger = $this->get('logger');
$logger->info(=print_R($user,true));
我得到的输出格式不符合预期的 print_r。它将所有内容记录在一行中。
我的 config.yml
中没有任何独白设置,我怀疑这可能是问题所在。
如何使用 monolog 记录 print_r(array)
以便它以 tail -f
格式显示?
Monolog 默认使用 Monolog\Formatter\LineFormatter
,没有任何参数。 Formatter 基本上是负责日志中最终输出的对象。查看构造函数定义:
public function __construct($format = null, $dateFormat = null, $allowInlineLineBreaks = false, $ignoreEmptyContextAndExtra = false)
如您所见,由于第三个参数,LineFormatter 从您的 print_r 输出中创建了一行。您需要使用 LineFormatter
.
的自定义参数定义新服务
# app/config/services.yml - for example
services:
monolog.my_line_formatter: # Your name
class: Monolog\Formatter\LineFormatter
arguments: [~, ~, true]
现在找到您的独白定义并根据需要使用格式化程序。
# Example from default config_dev.yml
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
formatter: monolog.my_line_formatter
您将需要使用 use Monolog\Formatter\LineFormatter
来覆盖日志消息格式化程序的默认设置。下面是代码:
use Monolog\Logger;
use Monolog\Handler\StreamHandler;
use Monolog\Formatter\LineFormatter;
$logFilePath = __DIR__.'/path/to/logFile.log';
$arr = array('abc' => 'xyz', 'qwerty' => 'yuiop', 'username' => 'abc xyz');
$logger = new Logger('my_logger');
$formatter = new LineFormatter(
null, // Format of message in log, default [%datetime%] %channel%.%level_name%: %message% %context% %extra%\n
null, // Datetime format
true, // allowInlineLineBreaks option, default false
true // discard empty Square brackets in the end, default false
);
// Debug level handler
$debugHandler = new StreamHandler($logFilePath, Logger::DEBUG);
$debugHandler->setFormatter($formatter);
$logger->pushHandler($debugHandler);
$logger->info('FORMATTED ARRAY WITH MULTI-LINE');
$logger->info(print_r($arr, true));
以下是写入日志文件的日志消息:
[2019-06-06 09:24:05] my_logger.INFO: FORMATTED ARRAY WITH MULTI-LINE
[2019-06-06 09:24:05] my_logger.INFO: Array
(
[abc] => xyz
[qwerty] => yuiop
[username] => abc xyz
)
我正在尝试在 symfony
中使用 monolog
记录数组。
$logger = $this->get('logger');
$logger->info(=print_R($user,true));
我得到的输出格式不符合预期的 print_r。它将所有内容记录在一行中。
我的 config.yml
中没有任何独白设置,我怀疑这可能是问题所在。
如何使用 monolog 记录 print_r(array)
以便它以 tail -f
格式显示?
Monolog 默认使用 Monolog\Formatter\LineFormatter
,没有任何参数。 Formatter 基本上是负责日志中最终输出的对象。查看构造函数定义:
public function __construct($format = null, $dateFormat = null, $allowInlineLineBreaks = false, $ignoreEmptyContextAndExtra = false)
如您所见,由于第三个参数,LineFormatter 从您的 print_r 输出中创建了一行。您需要使用 LineFormatter
.
# app/config/services.yml - for example
services:
monolog.my_line_formatter: # Your name
class: Monolog\Formatter\LineFormatter
arguments: [~, ~, true]
现在找到您的独白定义并根据需要使用格式化程序。
# Example from default config_dev.yml
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
formatter: monolog.my_line_formatter
您将需要使用 use Monolog\Formatter\LineFormatter
来覆盖日志消息格式化程序的默认设置。下面是代码:
use Monolog\Logger;
use Monolog\Handler\StreamHandler;
use Monolog\Formatter\LineFormatter;
$logFilePath = __DIR__.'/path/to/logFile.log';
$arr = array('abc' => 'xyz', 'qwerty' => 'yuiop', 'username' => 'abc xyz');
$logger = new Logger('my_logger');
$formatter = new LineFormatter(
null, // Format of message in log, default [%datetime%] %channel%.%level_name%: %message% %context% %extra%\n
null, // Datetime format
true, // allowInlineLineBreaks option, default false
true // discard empty Square brackets in the end, default false
);
// Debug level handler
$debugHandler = new StreamHandler($logFilePath, Logger::DEBUG);
$debugHandler->setFormatter($formatter);
$logger->pushHandler($debugHandler);
$logger->info('FORMATTED ARRAY WITH MULTI-LINE');
$logger->info(print_r($arr, true));
以下是写入日志文件的日志消息:
[2019-06-06 09:24:05] my_logger.INFO: FORMATTED ARRAY WITH MULTI-LINE
[2019-06-06 09:24:05] my_logger.INFO: Array
(
[abc] => xyz
[qwerty] => yuiop
[username] => abc xyz
)