Writer::notice()

void notice(string $message, array $context = array()) Log a notice to the logs. Parameters string $message array $context Return Value void

Writer::log()

void log(string $level, string $message, array $context = array()) Log a message to the logs. Parameters string $level string $message array $context Return Value void

Writer::listen()

void listen(Closure $callback) Register a new callback handler for when a log event is triggered. Parameters Closure $callback Return Value void Exceptions RuntimeException

Writer::info()

void info(string $message, array $context = array()) Log an informational message to the logs. Parameters string $message array $context Return Value void

Writer::getMonolog()

Logger getMonolog() Get the underlying Monolog instance. Return Value Logger

Writer::getEventDispatcher()

Dispatcher getEventDispatcher() Get the event dispatcher instance. Return Value Dispatcher

Writer::error()

void error(string $message, array $context = array()) Log an error message to the logs. Parameters string $message array $context Return Value void

Writer::emergency()

void emergency(string $message, array $context = array()) Log an emergency message to the logs. Parameters string $message array $context Return Value void

Writer::debug()

void debug(string $message, array $context = array()) Log a debug message to the logs. Parameters string $message array $context Return Value void

Writer::critical()

void critical(string $message, array $context = array()) Log a critical message to the logs. Parameters string $message array $context Return Value void