lms: Reduce log level of "send buffer of len ..."

Log level of "send buffer of len ..." messages was changed as it was
causing problems on some machines.

Change-Id: I605d50e81966c7bd169b27788d62af6fb54c84e1
This commit is contained in:
Zydrunas Tamosevicius 2018-06-12 00:27:53 +02:00 committed by Harald Welte
parent 43f3678b40
commit fd268b6f5a
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ int LMSDevice::writeSamples(std::vector < short *>&bufs, int len,
*underrun = false;
for (i = 0; i<chans; i++) {
LOG(ALERT) << "chan "<< i << " send buffer of len " << len << " timestamp " << std::hex << tx_metadata.timestamp;
LOG(DEBUG) << "chan "<< i << " send buffer of len " << len << " timestamp " << std::hex << tx_metadata.timestamp;
thread_enable_cancel(false);
rc = LMS_SendStream(&m_lms_stream_tx[i], bufs[i], len, &tx_metadata, 100);
if (rc != len) {