Question

I have a piece of code.

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'));
    }
}

This is the log info:

[2014-04-04 07:20:41] [Log] [INFO] : Mytest {"name":"John"}

But if I have more logs, everything are in one line.

[2014-04-04 07:20:41] [Log] [INFO] : Mytest {"name":"John"}[2014-04-04 07:20:41] [Log] [INFO] : Mytest {"name":"John"}[2014-04-04 07:20:41] [Log] [INFO] : Mytest {"name":"John"}

As I am using StreamHandler , I look at its source code

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']);
}

Its just append message the log file.

So my question is: Do I need to handle wrap line by myself, or monolog already provide function to wrap a line?

Thanks in advance.

Was it helpful?

Solution

Oh no, my fault.

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

Its simple, just config format like this:

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

But I found that not working.

But this works

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

So use Double quotes

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top