From 206b7e11e76401272b8ccaa88009a039fa268525 Mon Sep 17 00:00:00 2001
From: cranshaw <Jack.Cranshaw@cern.ch>
Date: Mon, 6 Aug 2018 13:44:49 -0500
Subject: [PATCH] Remove silent error on retrieve

Former-commit-id: a513f9147e888b1ad890cb9207a748056eb34d59
---
 Control/StoreGate/StoreGate/MetaHandleKey.icc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Control/StoreGate/StoreGate/MetaHandleKey.icc b/Control/StoreGate/StoreGate/MetaHandleKey.icc
index 21d85907e743..1bfa1f608995 100644
--- a/Control/StoreGate/StoreGate/MetaHandleKey.icc
+++ b/Control/StoreGate/StoreGate/MetaHandleKey.icc
@@ -40,14 +40,18 @@ namespace SG {
     // If container does not exist, then create it in the store
     //   otherwise cache pointer to container    
     if (m_store->contains< MetaCont<T> > (SG::VarHandleKey::key())) {
+      MsgStream msg(Athena::getMessageSvc(), "MetaHandleKey");
       if (m_store->retrieve(m_cont, SG::VarHandleKey::key()).isFailure()) {
-        MsgStream msg(Athena::getMessageSvc(), "MetaHandleKey");
         msg << MSG::ERROR 
             << "MetaHandleKey::init(): unable to retrieve MetaCont of "
             << Gaudi::DataHandle::fullKey() << " from MetaDataStore" 
             << endmsg;
         return StatusCode::FAILURE;
       }
+      else {
+        msg << MSG::INFO << "MetaCont found with key= " 
+            << SG::VarHandleKey::key() << endmsg;
+      }
     } else {
       m_cont = new MetaCont<T>(SG::VarHandleKey::key());
       if (m_store->record(m_cont, SG::VarHandleKey::key()).isFailure()) {
-- 
GitLab