From d4b3edfca60299bc8b90115d27c812734da6e16d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 9 Dec 2024 17:21:11 -0500 Subject: [PATCH] Fix debug string --- 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 7ea59ce82..8b53cd0fc 100644 --- a/src/zm_monitor_onvif.cpp +++ b/src/zm_monitor_onvif.cpp @@ -162,7 +162,7 @@ void Monitor::ONVIF::WaitForMessage() { int result = proxyEvent.PullMessages(response.SubscriptionReference.Address, nullptr, &tev__PullMessages, tev__PullMessagesResponse); if (result != SOAP_OK) { const char *detail = soap_fault_detail(soap); - Debug(1, "Result of getting ONVIF messages=%d soap_fault_string=%s detail=%s", + Debug(1, "Result of getting ONVIF result=%d soap_fault_string=%s detail=%s", result, soap_fault_string(soap), detail ? detail : "null"); if (result != SOAP_EOF) { //Ignore the timeout error Error("Failed to get ONVIF messages! %d %s", result, soap_fault_string(soap));