diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 526f6bbd2a..09c7b1df72 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -4391,8 +4391,7 @@ static int my_zt_write(struct zt_pvt *p, unsigned char *buf, int len, int index, size = (linear ? READ_SIZE * 2 : READ_SIZE); res = write(fd, buf, size); if (res != size) { - if (option_debug) - ast_log(LOG_DEBUG, "Write returned %d (%s) on channel %d\n", res, strerror(errno), p->channel); + ast_log(LOG_WARNING, "Write returned %d (%s) on channel %d - audio may have been lost\n", res, strerror(errno), p->channel); return sent; } len -= size;