From c91826b20eee1a610a85ab888f71b9d8eb315266 Mon Sep 17 00:00:00 2001
From: Markus Frank <markus.frank@cern.ch>
Date: Fri, 29 May 2015 13:51:22 +0000
Subject: [PATCH] Weaken print statement in object destructor

---
 DDG4/src/Geant4Action.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DDG4/src/Geant4Action.cpp b/DDG4/src/Geant4Action.cpp
index 31a3a740a..66b5f480a 100644
--- a/DDG4/src/Geant4Action.cpp
+++ b/DDG4/src/Geant4Action.cpp
@@ -75,7 +75,7 @@ long Geant4Action::addRef() {
 long Geant4Action::release() {
   long count = --m_refCount;
   if (m_refCount <= 0) {
-    print("Geant4Action: Deleting object %s of type %s Pointer:%p",
+    printM1("Geant4Action: Deleting object %s of type %s Pointer:%p",
           m_name.c_str(),typeName(typeid(*this)).c_str(),(void*)this);
     delete this;
   }
-- 
GitLab