From 74884d9cc3db07f00995f91c5a7bd15e04606191 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Fri, 13 Sep 2024 19:59:44 +0200 Subject: [PATCH] update log messages #50 --- DStarGateway/DStarGatewayThread.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DStarGateway/DStarGatewayThread.cpp b/DStarGateway/DStarGatewayThread.cpp index ac8cbe8..def3e12 100644 --- a/DStarGateway/DStarGatewayThread.cpp +++ b/DStarGateway/DStarGatewayThread.cpp @@ -405,16 +405,16 @@ void* CDStarGatewayThread::Entry() } catch (std::exception& e) { std::string message(e.what()); - CLog::logFatal("Exception raised in the main thread - \"%s\"", message.c_str()); + CLog::logFatal("Exception raised in the DStar Gateway thread - \"%s\"", message.c_str()); throw; } catch (...) { - CLog::logFatal("Unknown exception raised in the main thread"); + CLog::logFatal("Unknown exception raised in the DStar Gateway thread"); throw; } #endif - CLog::logInfo("Stopping the ircDDB Gateway thread"); + CLog::logInfo("Stopping the DStar Gateway thread"); // Unlink from all reflectors CDExtraHandler::unlink();