Skip to content
Snippets Groups Projects
Commit 8609d2d5 authored by Steven Murray's avatar Steven Murray
Browse files

Replaced LOG_WARNING with log::WARNING

parent fb9541d5
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ void cta::mediachanger::MmcProxyLog::mountTapeReadOnly(
std::list<log::Param> params = {
log::Param("TPVID", vid),
log::Param("librarySlot", librarySlot.str())};
m_log(LOG_WARNING, "Tape should be manual mounted for read-only access",
m_log(log::WARNING, "Tape should be manual mounted for read-only access",
params);
}
......@@ -48,7 +48,7 @@ void cta::mediachanger::MmcProxyLog::mountTapeReadWrite(
std::list<log::Param> params = {
log::Param("TPVID", vid),
log::Param("librarySlot", librarySlot.str())};
m_log(LOG_WARNING, "Tape should be manual mounted for read/write access",
m_log(log::WARNING, "Tape should be manual mounted for read/write access",
params);
}
......@@ -60,7 +60,7 @@ void cta::mediachanger::MmcProxyLog::dismountTape(
std::list<log::Param> params = {
log::Param("TPVID", vid),
log::Param("librarySlot", librarySlot.str())};
m_log(LOG_WARNING, "Tape should be manual dismounted", params);
m_log(log::WARNING, "Tape should be manual dismounted", params);
}
//------------------------------------------------------------------------------
......@@ -71,5 +71,5 @@ void cta::mediachanger::MmcProxyLog::forceDismountTape(
std::list<log::Param> params = {
log::Param("TPVID", vid),
log::Param("librarySlot", librarySlot.str())};
m_log(LOG_WARNING, "Tape should be manual dismounted", params);
m_log(log::WARNING, "Tape should be manual dismounted", params);
}
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