Kraken\Log\Logger::debug PHP Method

debug() public method

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