not finding space for pts is debug now and show the contents of header

This commit is contained in:
Isaac Connor
2021-03-02 12:41:26 -05:00
parent be99d09772
commit 1c40145e89

View File

@@ -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;
}