DirectAdmin\LetsEncrypt\Lib\Logger::error PHP Метод

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

Add a error line to the logger, and by default exit page
public error ( string $line, string | null $short = null, boolean $stop = true )
$line string Error line
$short string | null Use a custom short, instead of the $errorShort
$stop boolean Stop page load using exit and render output
    public function error($line, $short = null, $stop = true)
    {
        if ($short != null) {
            $this->short = $short;
        } else {
            $this->short = $this->errorShort;
        }
        $this->lines[] = '<b>' . $line . '</b>';
        if ($stop) {
            $this->output();
            exit(500);
        }
    }

Usage Example

Пример #1
0
        try {
            $challenges = new Challenges($domain);
            $challenges->solveChallenge();
            $log->log('Successfully completed challenge for ' . $domain->getDomain());
            $domain->createKeys();
            $domain->requestCertificate(null, $domain->config('subdomains'));
            $log->log('Successfully received certificate from Let\'s Encrypt');
            $domain->applyCertificates();
            $log->log('Successfully applied certificate and CA certificates to DirectAdmin');
            $domain->config('domain', $domain->getDomain());
            $domain->config('subdomains', $domain->getSubdomains());
            $domain->config('status', 'applied to DirectAdmin (renewed)');
            $domain->config('expire', date('Y-m-d', strtotime('+50 days')));
            $log->log('Reissued domain ' . $domain->getDomain() . ' with success.');
        } catch (\Exception $e) {
            $log->error($e->getMessage(), null, false);
        }
    }
}
// Rewrite and restart HTTPD files
$queue = 'action=rewrite&value=httpd' . PHP_EOL;
$queue .= 'action=httpd&value=graceful' . PHP_EOL;
file_put_contents('/usr/local/directadmin/data/task.queue', $queue, FILE_APPEND);
$log->log('Added rewrite and reload to Task.queue');
// Send notification to admin
$latestId = array_pop(scandir('/usr/local/directadmin/data/tickets'));
$id = array_pop(scandir('/usr/local/directadmin/data/tickets/' . $latestId)) + 1;
$path = '/usr/local/directadmin/data/tickets/' . substr(sprintf("%09d", $id), 0, 6);
if (!file_exists($path)) {
    mkdir($path);
    chmod($path, 0700);
All Usage Examples Of DirectAdmin\LetsEncrypt\Lib\Logger::error