Skip to content
Snippets Groups Projects

Mute error message in AlgContextSvc due to processing of endevent incident with IncidentProcAlg

Merged Sami Kama requested to merge (removed):atlas/20.8.X/Conditions into atlas/20.8.X/Conditions
All threads resolved!
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
@@ -132,8 +132,11 @@ IAlgorithm* AlgContextSvc::currentAlg () const
// ============================================================================
void AlgContextSvc::handle ( const Incident& ) {
if ( m_algorithms.get() && !m_algorithms->empty() ) {
error() << "Non-empty stack of algorithms #"
<< m_algorithms->size() << endmsg ;
//skip incident processing algorithm endevent incident
if((m_algorithms->size()!=1) || ((m_algorithms->back()->type()!="IncidentProcAlg") && (m_algorithms->back()->type()!="AthIncFirerAlg"))){
error() << "Non-empty stack of algorithms #"
<< m_algorithms->size() << endmsg ;
}
}
}
// ============================================================================
Loading