aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-04-25 19:25:46 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-04-25 19:26:24 +0200
commitbab1583a2cd445d2c0d94c10721fcf5573e056bb (patch)
tree740bddc585f85059ec422dc873eb22890e1a22ce /Transceiver52M
parent541496b65b366f846682c930aad4dbd66c97be89 (diff)
lms: Improve log during flush recv error
Diffstat (limited to 'Transceiver52M')
-rw-r--r--Transceiver52M/device/lms/LMSDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/device/lms/LMSDevice.cpp b/Transceiver52M/device/lms/LMSDevice.cpp
index 064d742..b924fa7 100644
--- a/Transceiver52M/device/lms/LMSDevice.cpp
+++ b/Transceiver52M/device/lms/LMSDevice.cpp
@@ -462,7 +462,7 @@ bool LMSDevice::flush_recv(size_t num_pkts)
rc = LMS_RecvStream(&m_lms_stream_rx[0], &buffer[0], len, &rx_metadata, 100);
LOGC(DDEV, DEBUG) << "Flush: Recv buffer of len " << rc << " at " << std::hex << rx_metadata.timestamp;
if (rc != len) {
- LOGC(DDEV, ALERT) << "LMS: Device receive timed out";
+ LOGC(DDEV, ALERT) << "Flush: Device receive timed out";
return false;
}