From d129eb9b74a88f54a0d6cad8d388a22b48b47676 Mon Sep 17 00:00:00 2001
From: Chichi Lalescu <chichilalescu@gmail.com>
Date: Sat, 18 Nov 2017 06:15:23 -0700
Subject: [PATCH] remove debug messages

---
 bfps/cpp/field.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/bfps/cpp/field.cpp b/bfps/cpp/field.cpp
index b18706da..8fc6f9ff 100644
--- a/bfps/cpp/field.cpp
+++ b/bfps/cpp/field.cpp
@@ -1180,7 +1180,6 @@ int joint_rspace_PDF(
                     H5P_DEFAULT);
             wspace = H5Dget_space(dset);
             ndims = H5Sget_simple_extent_dims(wspace, dims, NULL);
-            DEBUG_MSG("number of dimensions is %d\n", ndims);
             assert(ndims == 5);
             assert(dims[3] == 3);
             assert(dims[4] == 3);
@@ -1385,7 +1384,6 @@ field<rnumber, be, fc> &field<rnumber, be, fc>::operator=(
             this->get_ny() == src.get_ny() &&
             this->get_nz() == src.get_nz())
         {
-            DEBUG_MSG("in operator=, doing simple copy\n");
             std::copy(src.data,
                       src.data + this->rmemlayout->local_size,
                       this->data);
@@ -1393,7 +1391,6 @@ field<rnumber, be, fc> &field<rnumber, be, fc>::operator=(
         // complicated resize
         else
         {
-            DEBUG_MSG("in operator=, doing complicated resize\n");
             int64_t slice_size = src.clayout->local_size / src.clayout->subsizes[0];
             // clean up
             std::fill_n(this->data,
-- 
GitLab