Skip to content
Snippets Groups Projects
Commit 92079238 authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Merge branch 'warn_lar' into 'master'

Fix per-event WARNING messages from LAr conditions

See merge request atlas/athena!14371
parents 3ba284b6 cfd39f44
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ StatusCode LArCalibLineMappingAlg::execute() {
SG::WriteCondHandle<LArCalibLineMapping> writeHandle{m_writeKey};
if (writeHandle.isValid()) {
ATH_MSG_WARNING("Found valid write handle");
ATH_MSG_DEBUG("Found valid write handle");
return StatusCode::SUCCESS;
}
......
......@@ -102,7 +102,7 @@ StatusCode LArHVCondAlg::execute_r(const EventContext& ctx) const {
SG::WriteCondHandle<LArHVData> writeHandle{m_hvDataKey};
if (writeHandle.isValid()) {
ATH_MSG_WARNING("Found valid write handle");
ATH_MSG_DEBUG("Found valid write handle");
return StatusCode::SUCCESS;
}
......
......@@ -47,7 +47,7 @@ StatusCode LArHVIdMappingAlg::execute() {
SG::WriteCondHandle<LArHVIdMapping> writeHandle{m_writeKey};
if (writeHandle.isValid()) {
ATH_MSG_WARNING("Found valid write handle");
ATH_MSG_DEBUG("Found valid write handle");
return StatusCode::SUCCESS;
}
......
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