fix(daemon): Log responses for 'hello' and 'noop'

This commit is contained in:
Nick Bolton
2025-04-18 07:58:00 +01:00
parent b3f179a08a
commit 3b3d9e14fd

View File

@ -114,8 +114,10 @@ void DaemonIpcServer::processMessage(QLocalSocket *clientSocket, const QString &
const auto &command = parts[0];
if (command == "hello") { // NOSONAR - if-init is confusing here
LOG_DEBUG("ipc server got hello message, sending hello back");
clientSocket->write("hello\n");
} else if (command == "noop") {
LOG_DEBUG("ipc server got noop message");
clientSocket->write(kAckMessage);
} else if (command == "logLevel") {
processLogLevel(clientSocket, parts);