Increase debug level for fifo writing
This commit is contained in:
parent
0b4f04c4d5
commit
6ab8bee581
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue