Change a warning to a notice. Issue #11195, patch by eliel

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89117 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker 2007-11-08 18:49:08 +00:00
parent e03cb6a721
commit 8b6c511200
1 changed files with 1 additions and 1 deletions

View File

@ -712,7 +712,7 @@ static int load_module(void)
if (res < 0) {
return res;
} else if (res == 1) {
ast_log(LOG_WARNING, "No SMDI interfaces are available to listen on, not starting SMDI listener.\n");
ast_log(LOG_NOTICE, "No SMDI interfaces are available to listen on, not starting SMDI listener.\n");
return AST_MODULE_LOAD_DECLINE;
} else
return AST_MODULE_LOAD_SUCCESS;