From 60d626b568ead5372977a7a702642eb67f422686 Mon Sep 17 00:00:00 2001 From: mkerost Date: Mon, 29 Apr 2024 03:26:23 -0700 Subject: [PATCH] Update LeCommon.php (#3936) Match acme.sh settings where debug 2 should have corresponding syslog = 8, and debug 3 should have corresponding syslog = 9 --- .../opnsense/mvc/app/library/OPNsense/AcmeClient/LeCommon.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeCommon.php b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeCommon.php index f7237bfcc..d224cf9fa 100644 --- a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeCommon.php +++ b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeCommon.php @@ -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;