Kraken\Log\Logger::notice PHP Méthode

notice() public méthode

This method allows for compatibility with common interfaces.
public notice ( string $message, array $context = [] ) : boolean
$message string
$context array
Résultat 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);
    }