From 1c40145e89578ea293da5bf3cdca90453828f758 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 2 Mar 2021 12:41:26 -0500 Subject: [PATCH] not finding space for pts is debug now and show the contents of header --- src/zm_rtsp_server_fifo_source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_rtsp_server_fifo_source.cpp b/src/zm_rtsp_server_fifo_source.cpp index 3aa5f85a6..ee23d8167 100644 --- a/src/zm_rtsp_server_fifo_source.cpp +++ b/src/zm_rtsp_server_fifo_source.cpp @@ -184,7 +184,7 @@ int ZoneMinderFifoSource::getNextFrame() { char *pts_ptr = strchr(content_length_ptr, ' '); if (!pts_ptr) { m_buffer.consume(header_start-m_buffer.head() + 2); - Warning("Didn't find space delineating pts"); + Debug(1, "Didn't find space delineating pts in %s", header); delete header; return -1; }