aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_iax2.c
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-26 19:47:11 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-26 19:47:11 +0000
commit02583c93f839ada89c715a558eaad92bc5c1d484 (patch)
treea29f45b0c4c78099d4c5e195741a335fb2719605 /channels/chan_iax2.c
parente93329b1c836a0582def6217ace4749d9aaf6d04 (diff)
moving debug message from level 0 to 1.
(closes issue #15404) Reported by: leobrown Patches: iax_codec_debug.patch uploaded by leobrown (license 541) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@203710 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_iax2.c')
-rw-r--r--channels/chan_iax2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 3b6902e13..ead0f8f39 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -3709,7 +3709,7 @@ static int create_addr(const char *peername, struct ast_channel *c, struct socka
memcpy(&ourprefs, &peer->prefs, sizeof(ourprefs));
/* Move the calling channel's native codec to the top of the preference list */
if (c) {
- ast_log(LOG_DEBUG, "prepending %x to prefs\n", c->nativeformats);
+ ast_debug(1, "prepending %x to prefs\n", c->nativeformats);
ast_codec_pref_prepend(&ourprefs, c->nativeformats, 1);
}
ast_codec_pref_convert(&ourprefs, cai->prefs, sizeof(cai->prefs), 1);