Profiler\Logger\Logger::debug PHP Метод

debug() публичный Метод

Detailed debug information.
public debug ( $value, array $context = [] ) : null
$context array
Результат null
    public function debug($value, array $context = array())
    {
        // If we were given anything other than a string,
        // we'll get readable format of the value.
        if (!is_string($value)) {
            $value = print_r($value, true);
        }
        $this->log(LogLevel::DEBUG, $value, $context);
    }