ErrorLogger

Responsible for logging exceptions

class ErrorLogger implements LoggerAwareInterface
use LoggerAwareTrait
Copyright
2015-2016 Appertly
License
Apache-2.0

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(?LoggerInterface $logger = null, ?ConstMap<string,string> $levels = null)

Creates a new ErrorLogger.

Instance Methods

Public
ReturnsSignature and Description
void
log(Exception $e)

Logs an exception.

Method Details

__construct

public function __construct(?LoggerInterface $logger = null, ?ConstMap<string,string> $levels = null)

Creates a new ErrorLogger.

If an exception isn't found in the $levels map, this class assumes a level of LogLevel::ERROR.

$elog = new ErrorLogger(
    $logger,
    Map {"MyException" => LogLevel::DEBUG, "RuntimeException" => LogLevel::WARN}
);
Parameters
NameTypeDescription
$logger?LoggerInterface

The logger; will use Psr\Log\NullLogger by default

$levels?ConstMap<string,string>

Map of Exception names to log levels. Order matters!

log

public function log(Exception $e)

Logs an exception.

If an exception isn't found in the $levels map, this class assumes a level of LogLevel::ERROR.

Parameters
NameTypeDescription
$eException

The exception to log