Skip to content
This repository has been archived by the owner on Jan 2, 2020. It is now read-only.

Extensions for Zend\Log libraries

License

Notifications You must be signed in to change notification settings

Slamdunk/zend-log-extensions

Repository files navigation

Repository abandoned 2019-12-31

This repository has moved to Slamdunk/laminas-log-extensions.

Slam Zend\Log extensions

Build Status Code Coverage Packagist

Extensions for Zend\Log

Installation

Execute:

composer require slam/zend-log-extensions

Usage

The main functionality of this package is the RotateStream writer. PHP cannot handle files larger than 2 GB, so if you log a lot you can end up losing some if you reach this limit.

Slam\Zend\Log\Writer\RotateStream rotates the write when it reaches ~1.5 GB.

use Slam\Zend\Log\Writer\RotateStream;
use Zend\Log\Formatter\Simple;
use Zend\Log\Logger;

$writer = new RotateStream(__DIR__ . '/log.txt');
$writer->setFormatter(new Simple());

// Do the check everytime, defaults to once every 100000 log entries
$writer->setCheckProbability(1);
// 10 bytes max file size, defaults to ~1.5 GB
$writer->setMaxFileSize(10);

$logger = new Logger();
$logger->addWriter($writer);

for ($i = 0; $i < 10; ++$i) {
    $logger->info($i);
    sleep(1);
}

This is what you'll find in the directory:

$ ls log.txt*
log.txt  log.txt.1  log.txt.2  log.txt.3  log.txt.4  log.txt.5  log.txt.6  log.txt.7  log.txt.8  log.txt.9

$ cat log.txt.9
2017-09-05T11:08:46+02:00 INFO (6): 8
2017-09-05T11:08:47+02:00 NOTICE (5): LOG ROTATE

$ cat log.txt
2017-09-05T11:08:47+02:00 INFO (6): 9