Skip to content
Snippets Groups Projects
Commit ffae505b authored by John Derek Chapman's avatar John Derek Chapman Committed by Atlas Nightlybuild
Browse files

Merge branch 'atlasRects4637' into '21.3'

Skip setting message level when intializing NSW PRD and RDO converters (ATLASRECTS-4637)

See merge request atlas/athena!15118

(cherry picked from commit 3f5f710d [formerly 753b50682ff7971d4657656c751ed62a947e0f15])

1ec194c5 Skip setting message level when intializing NSW PRD and RDO converters
6deaa956 Clean commented lines in NSW RDO and PRD converters

Former-commit-id: 8c9637d6f253a17a67d4543fc082509f95efe95c
parent 550ef8c3
No related branches found
No related tags found
No related merge requests found
File mode changed from 100644 to 100755
......@@ -32,8 +32,6 @@ StatusCode MMPrepDataContainerCnv::initialize() {
if( !MMPrepDataContainerCnvBase::initialize().isSuccess() )
return StatusCode::FAILURE;
msgSvc()->setOutputLevel( "MMPrepDataContainerCnv", MSG::DEBUG );
// Get the messaging service, print where you are
MsgStream log(msgSvc(), "MMPrepDataContainerCnv");
if (log.level() <= MSG::INFO) log << MSG::INFO << "MMPrepDataContainerCnv::initialize()" << endmsg;
......
......@@ -20,8 +20,6 @@ StatusCode MM_RawDataContainerCnv::initialize() {
if( !MM_RawDataContainerCnvBase::initialize().isSuccess() )
return StatusCode::FAILURE;
msgSvc()->setOutputLevel( "MM_RawDataContainerCnv", MSG::DEBUG );
// Get the messaging service, print where you are
MsgStream log(msgSvc(), "MM_RawDataContainerCnv");
if (log.level() <= MSG::INFO) log << MSG::INFO << "MM_RawDataContainerCnv::initialize()" << endmsg;
......@@ -74,4 +72,4 @@ MM_RawDataContainerCnv::createTransient()
throw std::runtime_error("Unsupported persistent version of MM Raw Data (RDO) container");
}
return transCont;
}
\ No newline at end of file
}
......@@ -19,8 +19,6 @@ StatusCode STGC_RawDataContainerCnv::initialize() {
if( !STGC_RawDataContainerCnvBase::initialize().isSuccess() )
return StatusCode::FAILURE;
msgSvc()->setOutputLevel( "STGC_RawDataContainerCnv", MSG::DEBUG );
// Get the messaging service, print where you are
MsgStream log(msgSvc(), "STGC_RawDataContainerCnv");
if (log.level() <= MSG::INFO) log << MSG::INFO << "STGC_RawDataContainerCnv::initialize()" << endmsg;
......@@ -76,4 +74,4 @@ STGC_RawDataContainerCnv::createTransient()
throw std::runtime_error("Unsupported persistent version of STGC Raw Data (RDO) container");
}
return transCont;
}
\ No newline at end of file
}
......@@ -32,8 +32,6 @@ StatusCode sTgcPrepDataContainerCnv::initialize() {
if( !sTgcPrepDataContainerCnvBase::initialize().isSuccess() )
return StatusCode::FAILURE;
msgSvc()->setOutputLevel( "sTgcPrepDataContainerCnv", MSG::DEBUG );
// Get the messaging service, print where you are
MsgStream log(msgSvc(), "sTgcPrepDataContainerCnv");
if (log.level() <= MSG::INFO) log << MSG::INFO << "sTgcPrepDataContainerCnv::initialize()" << endmsg;
......
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