diff --git a/DDG4/src/Geant4Action.cpp b/DDG4/src/Geant4Action.cpp index 31a3a740ab9e8b2f59041e3e32a86954022e9e26..66b5f480a3500da6c9ac18823f9eb1580a99c1e6 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; }