From 315aec55f5c0ba4c7b7f734a86a962b607ca85e0 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sun, 2 Aug 2020 07:13:49 -0700 Subject: [PATCH] another ysf msg --- src/cwiresxcmdhandler.cpp | 2 +- src/cysfprotocol.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }