Logger::showDebugInfo PHP Method

showDebugInfo() public method

public showDebugInfo ( )
    public function showDebugInfo()
    {
        if (!$this->debug_added) {
            return;
        }
        if (@$this->app->not_html) {
            // We may not output anything, because this will screw up. Save debug output to session
            if (session_id()) {
                $this->memorize('debug_log', $this->debug_log);
            }
        } else {
            echo $this->debug_log;
        }
    }