Skip to content
Snippets Groups Projects
Commit a6dac2d8 authored by Nicolas Koehler's avatar Nicolas Koehler Committed by Edward Moyse
Browse files

Remove WARNING to make unit tests happy

parent e67ef95a
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ TgcReadoutParams::TgcReadoutParams(std::string name, int iCh, int Version, float ...@@ -60,7 +60,7 @@ TgcReadoutParams::TgcReadoutParams(std::string name, int iCh, int Version, float
StatusCode sc = svcLocator->service("MessageSvc", m_msgSvc); StatusCode sc = svcLocator->service("MessageSvc", m_msgSvc);
if (sc.isFailure()) std::cout << "Fail to locate Message Service" << std::endl; if (sc.isFailure()) std::cout << "Fail to locate Message Service" << std::endl;
m_Log = std::make_unique<MsgStream>(m_msgSvc, "TgcReadoutParams"); m_Log = std::make_unique<MsgStream>(m_msgSvc, "TgcReadoutParams");
if (msgSvc) (*m_Log) << MSG::WARNING<<"TgcReadoutParams::TgcReadoutParams() - passed IMessageSvc which is not needed anymore." << endmsg; if (msgSvc) (*m_Log) << MSG::DEBUG<<"TgcReadoutParams::TgcReadoutParams() - passed IMessageSvc which is not needed anymore." << endmsg;
} }
...@@ -111,7 +111,7 @@ TgcReadoutParams::TgcReadoutParams(std::string name, int iCh, int Version, float ...@@ -111,7 +111,7 @@ TgcReadoutParams::TgcReadoutParams(std::string name, int iCh, int Version, float
StatusCode sc = svcLocator->service("MessageSvc", m_msgSvc); StatusCode sc = svcLocator->service("MessageSvc", m_msgSvc);
if (sc.isFailure()) std::cout << "Fail to locate Message Service" << std::endl; if (sc.isFailure()) std::cout << "Fail to locate Message Service" << std::endl;
m_Log = std::make_unique<MsgStream>(m_msgSvc, "TgcReadoutParams"); m_Log = std::make_unique<MsgStream>(m_msgSvc, "TgcReadoutParams");
if (msgSvc) (*m_Log) << MSG::WARNING<<"TgcReadoutParams::TgcReadoutParams() - passed IMessageSvc which is not needed anymore." << endmsg; if (msgSvc) (*m_Log) << MSG::DEBUG<<"TgcReadoutParams::TgcReadoutParams() - passed IMessageSvc which is not needed anymore." << 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