Méthode |
Description |
|
__construct ( string $name ) |
|
|
addAlert ( string $message, array $context = [] ) : boolean |
Adds a log record at the ALERT level. |
|
addCritical ( string $message, array $context = [] ) : boolean |
Adds a log record at the CRITICAL level. |
|
addDebug ( string $message, array $context = [] ) : boolean |
Adds a log record at the DEBUG level. |
|
addError ( string $message, array $context = [] ) : boolean |
Adds a log record at the ERROR level. |
|
addInfo ( string $message, array $context = [] ) : boolean |
Adds a log record at the INFO level. |
|
addRecord ( integer $level, string $message, array $context = [] ) : boolean |
Adds a log record. |
|
addWarning ( string $message, array $context = [] ) : boolean |
Adds a log record at the WARNING level. |
|
alert ( string $message, array $context = [] ) : boolean |
Adds a log record at the ALERT level. |
|
crit ( string $message, array $context = [] ) : boolean |
Adds a log record at the CRITICAL level. |
|
debug ( string $message, array $context = [] ) : boolean |
Adds a log record at the DEBUG level. |
|
emerg ( string $message, array $context = [] ) : boolean |
Adds a log record at the ALERT level. |
|
err ( string $message, array $context = [] ) : boolean |
Adds a log record at the ERROR level. |
|
getLevelName ( integer $level ) : string |
Gets the name of the logging level. |
|
info ( string $message, array $context = [] ) : boolean |
Adds a log record at the INFO level. |
|
notice ( string $message, array $context = [] ) : boolean |
Adds a log record at the INFO level. |
|
popHandler ( ) : Monolog\Handler\HandlerInterface |
Pops an handler from the stack |
|
popProcessor ( ) : callable |
Removes the processor on top of the stack and returns it. |
|
pushHandler ( Monolog\Handler\HandlerInterface $handler ) |
Pushes an handler on the stack. |
|
pushProcessor ( callable $callback ) |
Adds a processor in the stack. |
|
warn ( string $message, array $context = [] ) : boolean |
Adds a log record at the WARNING level. |
|