Kraken\Log\Logger::notice PHP Method

notice() public method

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