20 lines
631 B
PHP
20 lines
631 B
PHP
<?php
|
|
namespace Incoviba\Common\Implement\Log\Formatter;
|
|
|
|
use Monolog\Formatter\JsonFormatter;
|
|
use Monolog\LogRecord;
|
|
|
|
class PDO extends JsonFormatter
|
|
{
|
|
public function __construct(int $batchMode = self::BATCH_MODE_JSON, bool $appendNewline = false, bool $ignoreEmptyContextAndExtra = false, bool $includeStacktraces = true)
|
|
{
|
|
parent::__construct($batchMode, $appendNewline, $ignoreEmptyContextAndExtra, $includeStacktraces);
|
|
}
|
|
|
|
public function format(LogRecord $record): string
|
|
{
|
|
$normalized = $this->normalize($record, $this->maxNormalizeDepth);
|
|
return $normalized['message'];
|
|
}
|
|
}
|