Kraken\Log\Logger::emergency PHP Метод

emergency() публичный Метод

This method allows for compatibility with common interfaces.
public emergency ( string $message, array $context = [] ) : boolean
$message string
$context array
Результат boolean
    public function emergency($message, array $context = array())
    {
        try {
            return $this->logger->emergency($message, $context);
        } catch (Error $ex) {
        } catch (Exception $ex) {
        }
        throw new WriteException("Record with debug level could not be logged.", $ex);
    }