From 357f12b914776a3a43957adb164502911d455726 Mon Sep 17 00:00:00 2001 From: cranshaw <Jack.Cranshaw@cern.ch> Date: Wed, 20 Jun 2018 10:01:48 -0500 Subject: [PATCH] Remove unneeded cerr messages in MetaCont Former-commit-id: 9eb4c9669e031ff2db1564b8b30e752f74d7ec09 --- Control/AthenaKernel/AthenaKernel/MetaCont.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Control/AthenaKernel/AthenaKernel/MetaCont.h b/Control/AthenaKernel/AthenaKernel/MetaCont.h index 81fead413af1..55a37cd714d8 100644 --- a/Control/AthenaKernel/AthenaKernel/MetaCont.h +++ b/Control/AthenaKernel/AthenaKernel/MetaCont.h @@ -192,12 +192,14 @@ bool MetaCont<T>::find(const SourceID& it, T*& t) const { t=itr->second; return true; } +/* else { std::cerr << "SID=" << it << " not found" << std::endl; for (const auto& elt : m_metaSet) { std::cerr << "Container has SID=" << elt.first << std::endl; } } +*/ return false; } -- GitLab