Skip to content
Snippets Groups Projects
Commit 9eb4c966 authored by cranshaw's avatar cranshaw
Browse files

Remove unneeded cerr messages in MetaCont

parent 02a93da1
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
...@@ -192,12 +192,14 @@ bool MetaCont<T>::find(const SourceID& it, T*& t) const { ...@@ -192,12 +192,14 @@ bool MetaCont<T>::find(const SourceID& it, T*& t) const {
t=itr->second; t=itr->second;
return true; return true;
} }
/*
else { else {
std::cerr << "SID=" << it << " not found" << std::endl; std::cerr << "SID=" << it << " not found" << std::endl;
for (const auto& elt : m_metaSet) { for (const auto& elt : m_metaSet) {
std::cerr << "Container has SID=" << elt.first << std::endl; std::cerr << "Container has SID=" << elt.first << std::endl;
} }
} }
*/
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment