From 23cb4e42e95a7a8646a5170cbefbc92ec409bbec Mon Sep 17 00:00:00 2001 From: ovargasp <59069596+ovargasp@users.noreply.github.com> Date: Sat, 7 Feb 2026 15:05:58 -0600 Subject: [PATCH] Change error log to debug log for Renew failure change from error to debug, is not necesary an error and if left like that can fill system/zmc logs. --- src/zm_monitor_onvif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_monitor_onvif.cpp b/src/zm_monitor_onvif.cpp index 7d4abda29..0d839d7a6 100644 --- a/src/zm_monitor_onvif.cpp +++ b/src/zm_monitor_onvif.cpp @@ -1073,7 +1073,7 @@ bool ONVIF::Renew() { } if (proxyEvent.Renew(subscription_address_.c_str(), nullptr, &wsnt__Renew, wsnt__RenewResponse) != SOAP_OK) { - Error("ONVIF: Couldn't do Renew! Error %i %s, %s", soap->error, soap_fault_string(soap), soap_fault_detail(soap)); + Debug(1, "ONVIF: Couldn't do Renew! Error %i %s, %s", soap->error, soap_fault_string(soap), soap_fault_detail(soap)); if (soap->error == 12) { // ActionNotSupported Debug(2, "ONVIF: Renew not supported by device, continuing without renewal"); setHealthy(true);