/** * Adds a log record at the EMERG level. * * @param string $message The log message * @param array $context The log context * @return Boolean Whether the record has been processed */ public function emerg($message, array $context = array()) { return $this->_logger->emerg($message, $context); }
/** * @param string $message * @param array $context * @return bool */ public function emerg($message, array $context = array()) { return parent::emerg($message, $context); }
/** * Adds a log record at the EMERGENCY level. * * This method allows for compatibility with common interfaces. * * @param string $message The log message * @param array $context The log context * @return Boolean Whether the record has been processed * @static */ public static function emerg($message, $context = array()) { return \Monolog\Logger::emerg($message, $context); }
/** * System is unusable. * * @param string $message * @param array $context * * @return void */ public function emergency($message, array $context = array()) { $this->monolog->emerg($message, $context); }