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.
- Full name:
\OpenApi\Logger\DefaultLogger
- Parent class:
\Psr\Log\AbstractLogger
- This class implements:
\Psr\Log\LoggerInterface
Logs with an arbitrary level.
public log(mixed $level, mixed $message, array $context = []): void
Parameters:
Parameter | Type | Description |
---|---|---|
$level |
mixed | |
$message |
mixed | |
$context |
array |
System is unusable.
public emergency(string|\Stringable $message, array $context = []): void
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Action must be taken immediately.
public alert(string|\Stringable $message, array $context = []): void
Example: Entire website down, database unavailable, etc. This should trigger the SMS alerts and wake you up.
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Critical conditions.
public critical(string|\Stringable $message, array $context = []): void
Example: Application component unavailable, unexpected exception.
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Runtime errors that do not require immediate action but should typically be logged and monitored.
public error(string|\Stringable $message, array $context = []): void
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Exceptional occurrences that are not errors.
public warning(string|\Stringable $message, array $context = []): void
Example: Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong.
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Normal but significant events.
public notice(string|\Stringable $message, array $context = []): void
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Interesting events.
public info(string|\Stringable $message, array $context = []): void
Example: User logs in, SQL logs.
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Detailed debug information.
public debug(string|\Stringable $message, array $context = []): void
Parameters:
Parameter | Type | Description |
---|---|---|
$message |
string|\Stringable | |
$context |
array |
Logs with an arbitrary level.
public log(mixed $level, string|\Stringable $message, array $context = []): void
- This method is abstract.
Parameters:
Parameter | Type | Description |
---|---|---|
$level |
mixed | |
$message |
string|\Stringable | |
$context |
array |