Email_Editor_Logger_Interface
in
Interface for email editor loggers.
Table of Contents
- alert() : void
- Action must be taken immediately.
- critical() : void
- Critical conditions.
- debug() : void
- Detailed debug information.
- emergency() : void
- System is unusable.
- error() : void
- Runtime errors that do not require immediate action but should typically be logged and monitored.
- info() : void
- Interesting events.
- log() : void
- Logs with an arbitrary level.
- notice() : void
- Normal but significant events.
- warning() : void
- Exceptional occurrences that are not errors.
Methods
alert()
Action must be taken immediately.
public
alert(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —critical()
Critical conditions.
public
critical(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —debug()
Detailed debug information.
public
debug(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —emergency()
System is unusable.
public
emergency(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —error()
Runtime errors that do not require immediate action but should typically be logged and monitored.
public
error(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —info()
Interesting events.
public
info(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —log()
Logs with an arbitrary level.
public
log(string $level, string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $level : string
-
The log level.
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —notice()
Normal but significant events.
public
notice(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.
Return values
void —warning()
Exceptional occurrences that are not errors.
public
warning(string $message[, array<string|int, mixed> $context = array() ]) : void
Parameters
- $message : string
-
The log message.
- $context : array<string|int, mixed> = array()
-
The log context.