Airship\Engine\Ledger::debug PHP Method

debug() public method

Store a DEBUG message
public debug ( string $message, array $context = [] ) : mixed
$message string
$context array
return mixed
    public function debug($message, array $context = [])
    {
        $state = State::instance();
        if (!$state->universal['debug']) {
            return null;
        }
        return $this->log(LogLevel::DEBUG, $message, $context);
    }