summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorWalter Doekes <walter+asterisk@wjd.nu>2012-10-17 14:24:52 +0000
committerWalter Doekes <walter+asterisk@wjd.nu>2012-10-17 14:24:52 +0000
commit6d57ecd48c2efa36973ebcf204ffed0ed8a39580 (patch)
treefbfe10fa310a17ab585f1d274220d3255ea57727 /main
parent1a0646aec17422b5d5071714fa8f1992a097c367 (diff)
Change a few warnings to debug and the inverse.
Remove the "RTP Read too short" warning for RTP keepalives. Remove the the warning about the application delimiter switch from pipe to comma. (You should've done this by now.) Make cdr_odbc report more when an insert fails. Make chan_sip warn less when the peer wants SRTP (and we don't) or sends a zero port to disable a media type. Review: https://reviewboard.asterisk.org/r/2167 (closes issue ASTERISK-20538) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@375137 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 9fdd3a154..1ddda903c 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -1580,12 +1580,6 @@ int pbx_exec(struct ast_channel *c, /*!< Channel */
if (app->module)
u = __ast_module_user_add(app->module, c);
- if (strcasecmp(app->name, "system") && !ast_strlen_zero(data) &&
- strchr(data, '|') && !strchr(data, ',') && !ast_opt_dont_warn) {
- ast_log(LOG_WARNING, "The application delimiter is now the comma, not "
- "the pipe. Did you forget to convert your dialplan? (%s(%s))\n",
- app->name, (char *) data);
- }
res = app->execute(c, S_OR(data, ""));
if (app->module && u)
__ast_module_user_remove(app->module, u);