summaryrefslogtreecommitdiff
path: root/codecs
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2007-04-27 16:18:51 +0000
committerJason Parker <jparker@digium.com>2007-04-27 16:18:51 +0000
commitfdbb94bb1921034502a946ee632142f37e7d7015 (patch)
tree5a6d1b88068238acca4f42334ba44d819a659b71 /codecs
parentec0cae93a4a51c9b110636c006e6d8913ae0e0c6 (diff)
Merged revisions 62174 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r62174 | qwell | 2007-04-27 11:17:46 -0500 (Fri, 27 Apr 2007) | 11 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@62175 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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++) {