diff --git a/src/cwiresxcmdhandler.cpp b/src/cwiresxcmdhandler.cpp index ba1789a..23acb41 100644 --- a/src/cwiresxcmdhandler.cpp +++ b/src/cwiresxcmdhandler.cpp @@ -79,7 +79,7 @@ bool CWiresxCmdHandler::Init(void) { m_Future = std::async(std::launch::async, &CWiresxCmdHandler::Thread, this); } - catch(const std::exception& e) + catch(const std::exception &e) { std::cerr << "ERROR: could not start WiresX Command Handler: " << e.what() << std::endl; return false; diff --git a/src/cysfprotocol.cpp b/src/cysfprotocol.cpp index 4d415cb..1b2ce96 100644 --- a/src/cysfprotocol.cpp +++ b/src/cysfprotocol.cpp @@ -58,7 +58,7 @@ bool CYsfProtocol::Initalize(const char *type, const uint16 port, const bool has // update time m_LastKeepaliveTime.Now(); - // done + std::cout << "YSF Protocol successfully initialized" << std::endl; return true; }