Skip to content
Snippets Groups Projects
Commit c1b1fa74 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'idVavDebugMsg' into 'master'

[ATR-22401] Add additional debug printout before calling associateToEventView

See merge request atlas/athena!38549
parents 34ff9cb4 6449dd21
No related branches found
No related tags found
No related merge requests found
......@@ -322,6 +322,10 @@ protected:
SG::ReadHandle<Collection> handle(key);
CLID checkCLID;
const std::string* keyStr = m_provider->evtStore()->keyToString(roi_link.key(), checkCLID);
m_provider->msg(MSG::DEBUG) << "Requesting range over (" << key << ") associated to ROI from " << (keyStr == nullptr ? "UNKNOWN" : *keyStr) << endmsg;
itrpair = (*m_tdt)->associateToEventView( handle, roi_link );
return itrpair;
......@@ -463,6 +467,10 @@ protected:
SG::ReadHandle<Collection> handle(key);
CLID checkCLID;
const std::string* keyStr = m_provider->evtStore()->keyToString(roi_link.key(), checkCLID);
m_provider->msg(MSG::DEBUG) << "Requesting range over (" << key << ") associated to ROI from " << (keyStr == nullptr ? "UNKNOWN" : *keyStr) << endmsg;
itrpair = (*m_tdt)->associateToEventView( handle, roi_link );
if ( itrpair.first != itrpair.second ) {
......
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