aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Transceiver52M/Transceiver.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index 8b950f7..442853f 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -721,7 +721,7 @@ void Transceiver::driveControl(size_t chan)
/* Set command pointer */
command = buffer + 4;
- LOGC(DTRXCTRL, INFO) << "chan " << chan << ": command is " << command;
+ LOGC(DTRXCTRL, INFO) << "chan " << chan << ": command is '" << command << "'";
if (match_cmd(command, "POWEROFF", NULL)) {
stop();
@@ -852,6 +852,7 @@ void Transceiver::driveControl(size_t chan)
sprintf(response,"RSP ERR 1");
}
+ LOGC(DTRXCTRL, INFO) << "chan " << chan << ": response is '" << response << "'";
mCtrlSockets[chan]->write(response, strlen(response) + 1);
}