Index: codecs/codec_speex.c =================================================================== --- codecs/codec_speex.c (revision 108133) +++ codecs/codec_speex.c (working copy) @@ -209,7 +209,7 @@ if (f->datalen == 0) { /* Native PLC interpolation */ if (pvt->samples + tmp->framesize > BUFFER_SAMPLES) { - ast_log(LOG_WARNING, "Out of buffer space\n"); + ast_log(LOG_WARNING, "Out of buffer space: %d + %d > %d\n", pvt->samples, tmp->framesize, BUFFER_SAMPLES); return -1; } #ifdef _SPEEX_TYPES_H @@ -236,7 +236,7 @@ if (res < 0) break; if (pvt->samples + tmp->framesize > BUFFER_SAMPLES) { - ast_log(LOG_WARNING, "Out of buffer space\n"); + ast_log(LOG_WARNING, "Out of buffer space: %d + %d > %d\n", pvt->samples, tmp->framesize, BUFFER_SAMPLES); return -1; } for (x = 0 ; x < tmp->framesize; x++)