Commit 03fe9a2813538a6893cb1e62d0a07e594a681101

Authored by Charles Otto
1 parent 279ef000

Remove unneeded debug output

Showing 1 changed file with 0 additions and 2 deletions
openbr/core/qtutils.cpp
... ... @@ -543,10 +543,8 @@ void BlockCompression::close()
543 543 {
544 544 // flush output buffer
545 545 if ((openMode() & QIODevice::WriteOnly) && precompressedBlockWriter) {
546   - qDebug() << "Serializing final block";
547 546 QByteArray compressedBlock = qCompress(precompressedBlockWriter->buffer(), -1);
548 547 blockWriter << compressedBlock;
549   - qDebug() << "Done";
550 548 }
551 549 basis->close();
552 550 }
... ...