Metaregistrar\EPP\eppBase::showLog PHP Метод

showLog() защищенный Метод

Shows the log when the script has ended
protected showLog ( )
    protected function showLog()
    {
        echo "==== LOG ====\n";
        if (property_exists($this, 'logentries')) {
            foreach ($this->logentries as $logentry) {
                echo $logentry . "\n";
            }
        }
    }