From 312b155955abb06febfbeaf1f6041585b0df7654 Mon Sep 17 00:00:00 2001 From: Patrick Schmidt Date: Thu, 14 Jan 2021 18:54:50 +0100 Subject: [PATCH] Disable debug output when writing .om file --- src/OpenMesh/Core/IO/writer/OMWriter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Core/IO/writer/OMWriter.cc b/src/OpenMesh/Core/IO/writer/OMWriter.cc index c190b2f8..1cfc0130 100644 --- a/src/OpenMesh/Core/IO/writer/OMWriter.cc +++ b/src/OpenMesh/Core/IO/writer/OMWriter.cc @@ -573,7 +573,7 @@ bool _OMWriter_::write_binary(std::ostream& _os, BaseExporter& _be, chunk_header.entity_ = OMFormat::Chunk::Entity_Sentinel; bytes += store(_os, chunk_header, swap); - std::clog << "#bytes written: " << bytes << std::endl; +// std::clog << "#bytes written: " << bytes << std::endl; return true; }