diff --git a/UMP.cpp b/UMP.cpp index 8eff25a..383c7b4 100644 --- a/UMP.cpp +++ b/UMP.cpp @@ -62,6 +62,8 @@ bool CUMP::open() if (m_open) return true; + LogMessage("Opening the UMP"); + bool ret = m_serial.open(); if (!ret) return false; @@ -252,6 +254,8 @@ void CUMP::close() if (!m_open) return; + LogMessage("Closing the UMP"); + m_serial.close(); m_open = false;