Auth0\SDK\API\Oauth2Client::debugInfo PHP Метод

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

If debug mode is set, sends $info to debugger \Closure.
public debugInfo ( mixed $info )
$info mixed Info to debug. It will be converted to string.
    public function debugInfo($info)
    {
        if ($this->debug_mode && (is_object($this->debugger) && $this->debugger instanceof \Closure)) {
            list(, $caller) = debug_backtrace(false);
            $caller_function = $caller['function'];
            $caller_class = $caller['class'];
            $this->debugger->__invoke($caller_class . '::' . $caller_function . ' > ' . $info);
        }
    }