1

私はコードを持っています。

class LogApi {

    private $log;
    private $path;
    private $format = array(
        'date' => 'Y-m-d H:i:s',
        'message' => '[%datetime%][%channel%][%level_name%] : %message% %context%',
    );
    private $formatter;

    function __construct() {
        $this->log =  new \Monolog\Logger('Log');
        $this->path = LOG_ADMIN_REDIS_INIT_FILE;
        $this->formatter = new \Monolog\Formatter\LineFormatter($this->format['message'], $this->format['date']);

    }

    public function log($path = LOG_ADMIN_REDIS_INIT_FILE, $level = Monolog\Logger::INFO){

        $stream = new \Monolog\Handler\StreamHandler($path, $level);
        $stream->setFormatter($this->formatter);
        $this->log->pushHandler($stream);

        $this->log->addInfo('Mytest', array('name'=>'John'));
    }
}

これはログ情報です:

[2014-04-04 07:20:41] [ログ] [情報]: Mytest {"name":"John"}

しかし、より多くのログがある場合、すべてが 1 行に表示されます。

[2014-04-04 07:20:41] [ログ] [情報]: Mytest {"name":"John"}[2014-04-04 07:20:41] [ログ] [情報]: Mytest { "名前":"ジョン"}[2014-04-04 07:20:41] [ログ] [情報]: Mytest {"名前":"ジョン"}

を使用しStreamHandlerているので、そのソース コードを確認します

protected function write(array $record)
{
    if (null === $this->stream) {
        if (!$this->url) {
            throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().');
        }
        $errorMessage = null;
        set_error_handler(function ($code, $msg) use (&$errorMessage) {
            $errorMessage = preg_replace('{^fopen\(.*?\): }', '', $msg);
        });
        $this->stream = fopen($this->url, 'a');
        restore_error_handler();
        if (!is_resource($this->stream)) {
            $this->stream = null;
            throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened: '.$errorMessage, $this->url));
        }
    }
    fwrite($this->stream, (string) $record['formatted']);
}

ログファイルにメッセージを追加するだけです。

私の質問は次のとおりです。wrap line自分で処理する必要がありますか、それともモノログはすでに行をラップする機能を提供していますか?

前もって感謝します。

4

1 に答える 1

1

いや、私のせいです。

private $format = array(
    'date' => 'Y-m-d H:i:s',
    'message' => '[%datetime%][%channel%][%level_name%] : %message% %context%',
);

シンプルで、次のような構成形式です。

'message' => '[%datetime%][%channel%][%level_name%] : %message% %context% \n',

しかし、私はそれが機能していないことがわかりました。

しかし、これは機能します

'message' => "[%datetime%][%channel%][%level_name%] : %message% %context% \n",

したがって、二重引用符を使用してください

于 2014-04-04T07:51:16.820 に答える