Changed debug level of the message printed when buffer overrun occurs.

git-svn-id: http://voip.null.ro/svn/yate@1730 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2008-02-15 13:06:53 +00:00
parent 1133f1238e
commit 4320c5b19f
1 changed files with 1 additions and 1 deletions

View File

@ -2147,7 +2147,7 @@ void ZapCircuit::consume(const DataBlock& data)
if (m_consBuffer.length() + data.length() <= m_consBufMax)
m_consBuffer += data;
else {
Debug(group(),DebugWarn,
Debug(group(),DebugAll,
"ZapCircuit(%u). Buffer overrun old=%u channel=%u (%d: %s) [%p]",
code(),m_consBuffer.length(),m_device.channel(),m_errno,
::strerror(m_errno),this);