Add more UMP logging.

This commit is contained in:
Jonathan Naylor 2016-11-05 18:41:41 +00:00
parent ef4b03626b
commit 1994f0049a

View file

@ -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;