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

info() public méthode

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