aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-05-03 19:13:52 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-05-04 20:36:07 +0200
commita7919265f583495bb7a5aa05f05e4925e9c99a26 (patch)
tree0921a870d3516bd5a2e33f978598b05be8008ed8 /Transceiver52M
parent9b394e0cc0b94e616ab053fb968d2ff64d80daae (diff)
smpl_buf: Remove dbg log line with duplicated info
Diffstat (limited to 'Transceiver52M')
-rw-r--r--Transceiver52M/device/smpl_buf.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Transceiver52M/device/smpl_buf.cpp b/Transceiver52M/device/smpl_buf.cpp
index e3c5af5..c21f306 100644
--- a/Transceiver52M/device/smpl_buf.cpp
+++ b/Transceiver52M/device/smpl_buf.cpp
@@ -99,13 +99,13 @@ ssize_t smpl_buf::write(void *buf, size_t len, TIMESTAMP timestamp)
return ERROR_TIMESTAMP;
if (timestamp < time_end) {
- LOGC(DDEV, ERR) << "Overwriting old buffer data: timestamp="<<timestamp<<" time_end="<<time_end;
- LOGC(DDEV, DEBUG) << "Requested timestamp = " << timestamp;
+ LOGC(DDEV, ERR) << "Overwriting old buffer data: timestamp="
+ << timestamp << " time_end=" << time_end;
// Do not return error here, because it's a rounding error and is not fatal
}
if (timestamp > time_end && time_end != 0) {
- LOGC(DDEV, ERR) << "Skipping buffer data: timestamp="<<timestamp<<" time_end="<<time_end;
- LOGC(DDEV, DEBUG) << "Requested timestamp = " << timestamp;
+ LOGC(DDEV, ERR) << "Skipping buffer data: timestamp="
+ << timestamp << " time_end=" << time_end;
// Do not return error here, because it's a rounding error and is not fatal
}