Skip to content

Latest commit

 

History

History
303 lines (133 loc) · 3.97 KB

DefaultLogger.md

File metadata and controls

303 lines (133 loc) · 3.97 KB

DefaultLogger

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.

Methods

log

Logs with an arbitrary level.

public log(mixed $level, mixed $message, array $context = []): void

Parameters:

Parameter Type Description
$level mixed
$message mixed
$context array

Inherited methods

emergency

System is unusable.

public emergency(string|\Stringable $message, array $context = []): void

Parameters:

Parameter Type Description
$message string|\Stringable
$context array

alert

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

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

error

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

warning

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

notice

Normal but significant events.

public notice(string|\Stringable $message, array $context = []): void

Parameters:

Parameter Type Description
$message string|\Stringable
$context array

info

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

debug

Detailed debug information.

public debug(string|\Stringable $message, array $context = []): void

Parameters:

Parameter Type Description
$message string|\Stringable
$context array

log

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