Skip to content
Snippets Groups Projects
Commit 4f6e2f9e authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#5690] Remove not useful logs

parent 8e0e135c
No related branches found
No related tags found
No related merge requests found
...@@ -49,11 +49,11 @@ MainBuffer::~MainBuffer() ...@@ -49,11 +49,11 @@ MainBuffer::~MainBuffer()
void MainBuffer::setInternalSamplingRate (int sr) void MainBuffer::setInternalSamplingRate (int sr)
{ {
_debug("MainBuffer: ------------------------------------- Set internal sampling rate"); _debug("MainBuffer: Set internal sampling rate");
if (sr > _internalSamplingRate) { if (sr > _internalSamplingRate) {
_debug ("MainBuffer: ---------------------------------- Internal sampling rate changed %d", sr); _debug ("MainBuffer: Internal sampling rate changed %d", sr);
// This call takes the mutex // This call takes the mutex
flushAllBuffers(); flushAllBuffers();
...@@ -467,7 +467,6 @@ int MainBuffer::availForGet (CallID call_id) ...@@ -467,7 +467,6 @@ int MainBuffer::availForGet (CallID call_id)
return 0; return 0;
if (callid_set->empty()) { if (callid_set->empty()) {
_debug ("MainBuffer: CallIDSet with ID: \"%s\" is empty!", call_id.c_str());
return 0; return 0;
} }
...@@ -576,7 +575,6 @@ void MainBuffer::flush (CallID call_id) ...@@ -576,7 +575,6 @@ void MainBuffer::flush (CallID call_id)
return; return;
if (callid_set->empty()) { if (callid_set->empty()) {
// _debug("CallIDSet with ID: \"%s\" is empty!", call_id.c_str());
} }
if (callid_set->size() == 1) { if (callid_set->size() == 1) {
...@@ -634,7 +632,6 @@ void MainBuffer:: syncBuffers (CallID call_id) ...@@ -634,7 +632,6 @@ void MainBuffer:: syncBuffers (CallID call_id)
return; return;
if (callid_set->empty()) { if (callid_set->empty()) {
_debug ("MainBuffer: CallIDSet with ID: \"%s\" is empty!", call_id.c_str());
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment