From c9f276b53c0318f3950b6dd1dd02932aa83ba697 Mon Sep 17 00:00:00 2001
From: Cristian C Lalescu <Cristian.Lalescu@ds.mpg.de>
Date: Tue, 5 Feb 2019 16:12:34 +0100
Subject: [PATCH] remove debug messages

---
 bfps/cpp/particles/particles_output_hdf5.hpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/bfps/cpp/particles/particles_output_hdf5.hpp b/bfps/cpp/particles/particles_output_hdf5.hpp
index 8f2b45ed..d7c987ee 100644
--- a/bfps/cpp/particles/particles_output_hdf5.hpp
+++ b/bfps/cpp/particles/particles_output_hdf5.hpp
@@ -242,7 +242,6 @@ public:
             variable_used_only_in_assert(rethdf);
             assert(rethdf >= 0);
 
-            DEBUG_MSG("before writing state\n");
             herr_t	status = H5Dwrite(
                     dataset_id,
                     type_id,
@@ -258,7 +257,6 @@ public:
             assert(rethdf >= 0);
             rethdf = H5Sclose(filespace);
             assert(rethdf >= 0);
-            DEBUG_MSG("after writing state\n");
         }
         {
             assert(size_particle_rhs >= 0);
@@ -306,7 +304,6 @@ public:
                 variable_used_only_in_assert(rethdf);
                 assert(rethdf >= 0);
 
-                DEBUG_MSG("before writing rhs %d\n", idx_rhs);
                 herr_t	status = H5Dwrite(
                         dataset_id,
                         type_id,
@@ -320,7 +317,6 @@ public:
                 assert(rethdf >= 0);
                 rethdf = H5Sclose(memspace);
                 assert(rethdf >= 0);
-                DEBUG_MSG("after writing rhs %d\n", idx_rhs);
             }
             int rethdf = H5Dclose(dataset_id);
             variable_used_only_in_assert(rethdf);
-- 
GitLab