Increase debug level for fifo writing

This commit is contained in:
Isaac Connor 2021-03-17 12:48:59 -04:00
parent 0b4f04c4d5
commit 6ab8bee581
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ bool Fifo::close() {
bool Fifo::writePacket(ZMPacket &packet) {
if (!(outfile or open())) return false;
Debug(1, "Writing header ZM %u %" PRId64, packet.packet.size, packet.pts);
Debug(2, "Writing header ZM %u %" PRId64, packet.packet.size, packet.pts);
// Going to write a brief header
if ( fprintf(outfile, "ZM %u %" PRId64 "\n", packet.packet.size, packet.pts) < 0 ) {
if (errno != EAGAIN) {