Update LeCommon.php (#3936)

Match acme.sh settings where debug 2 should have corresponding syslog = 8, and debug 3 should have corresponding syslog = 9
This commit is contained in:
mkerost
2024-04-29 12:26:23 +02:00
committed by GitHub
parent 2e7acc10be
commit 60d626b568
@@ -219,13 +219,13 @@ abstract class LeCommon
$this->debug = true;
break;
case 'debug2':
$this->acme_args[] = '--syslog 7';
$this->acme_args[] = '--syslog 8';
$this->acme_args[] = '--debug 2';
$this->acme_syslog = 7;
$this->debug = true;
break;
case 'debug3':
$this->acme_args[] = '--syslog 7';
$this->acme_args[] = '--syslog 9';
$this->acme_args[] = '--debug 3';
$this->acme_syslog = 7;
$this->debug = true;