\Psr\LogAbstractLogger

This is a simple Logger implementation that other Loggers can inherit from.

It simply delegates all log-level-specific methods to the log method to reduce boilerplate code that a simple Logger that does the same thing with messages regardless of the error level has to implement.

Summary

Methods
Properties
Constants
emergency()
alert()
critical()
error()
warning()
notice()
info()
debug()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

emergency()

emergency(string $message, array $context) : null

System is unusable.

Parameters

string $message
array $context

Returns

null

alert()

alert(string $message, array $context) : null

Action must be taken immediately.

Example: Entire website down, database unavailable, etc. This should trigger the SMS alerts and wake you up.

Parameters

string $message
array $context

Returns

null

critical()

critical(string $message, array $context) : null

Critical conditions.

Example: Application component unavailable, unexpected exception.

Parameters

string $message
array $context

Returns

null

error()

error(string $message, array $context) : null

Runtime errors that do not require immediate action but should typically be logged and monitored.

Parameters

string $message
array $context

Returns

null

warning()

warning(string $message, array $context) : null

Exceptional occurrences that are not errors.

Example: Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong.

Parameters

string $message
array $context

Returns

null

notice()

notice(string $message, array $context) : null

Normal but significant events.

Parameters

string $message
array $context

Returns

null

info()

info(string $message, array $context) : null

Interesting events.

Example: User logs in, SQL logs.

Parameters

string $message
array $context

Returns

null

debug()

debug(string $message, array $context) : null

Detailed debug information.

Parameters

string $message
array $context

Returns

null