aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-27 16:17:46 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-27 16:17:46 +0000
commit6e173df0b65126893d84a6fcc3578218e51280cc (patch)
treee4fffc8cb34477f2505e2e0251a2c03ba5b75960 /codecs
parent12dfff2a7934f04e523a3ef099bc15bda5fbd162 (diff)
Merged revisions 62173 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r62173 | qwell | 2007-04-27 11:16:16 -0500 (Fri, 27 Apr 2007) | 3 lines This transcoder message needn't be a NOTICE. I've seen it cause confusion more than a few times. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@62174 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rw-r--r--codecs/codec_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/codecs/codec_zap.c b/codecs/codec_zap.c
index cf9939987..c3c7463e4 100644
--- a/codecs/codec_zap.c
+++ b/codecs/codec_zap.c
@@ -362,7 +362,7 @@ static int find_transcoders(void)
info.op = ZT_TCOP_GETINFO;
if ((fd = open("/dev/zap/transcode", O_RDWR)) < 0) {
- ast_log(LOG_NOTICE, "No Zaptel transcoder support!\n");
+ ast_log(LOG_DEBUG, "No Zaptel transcoder support!\n");
return 0;
}
for (info.tcnum = 0; !(res = ioctl(fd, ZT_TRANSCODE_OP, &info)); info.tcnum++) {