finwe/logger

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v0.7.1) of this package.

Logger allowing either log by selected logger or to stack loggers and log to each of them.

v0.7.1 2015-02-05 13:57 UTC

This package is not auto-updated.

Last update: 2018-05-29 10:20:47 UTC


README

Logger allowing either log by selected logger or to stack loggers and log to each of them.

Originally comes from http://addons.nette.org/cs/logger by Jan Smitka and Martin Pecka

Example

$fileLogger = new FileLogger();
$outputLogger = new OutputLogger();
$stack = new Stack(array(
	'loggers' => array($fileLogger, $outputLogger)
));

$stack->logMessage('Just a casual informational message');
$stack->logMessage(ILogger::ALERT, 'Alert, CPU load exceeded %d %%', 300);