Disable debug output when writing .om file

This commit is contained in:
Patrick Schmidt
2021-01-14 18:54:50 +01:00
parent 87f2365d20
commit 312b155955

View File

@@ -573,7 +573,7 @@ bool _OMWriter_::write_binary(std::ostream& _os, BaseExporter& _be,
chunk_header.entity_ = OMFormat::Chunk::Entity_Sentinel; chunk_header.entity_ = OMFormat::Chunk::Entity_Sentinel;
bytes += store(_os, chunk_header, swap); bytes += store(_os, chunk_header, swap);
std::clog << "#bytes written: " << bytes << std::endl; // std::clog << "#bytes written: " << bytes << std::endl;
return true; return true;
} }