From: David Vossel Date: Tue, 24 Aug 2010 18:45:57 +0000 (+0000) Subject: This fix downgrades the ERROR message indicating no res_stun_monitor.conf to a WARNIN... X-Git-Tag: 11.0.0-beta1~2422 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4be043383cfcc65a6752d2ca0c2e07fc3b9c25d1;p=thirdparty%2Fasterisk.git This fix downgrades the ERROR message indicating no res_stun_monitor.conf to a WARNING message. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@283456 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_stun_monitor.c b/res/res_stun_monitor.c index 54be1e44c6..49f231a1b4 100644 --- a/res/res_stun_monitor.c +++ b/res/res_stun_monitor.c @@ -218,7 +218,7 @@ static int load_config(int startup) if (!(cfg = ast_config_load2(stun_conf_file, "res_stun_monitor", config_flags)) || cfg == CONFIG_STATUS_FILEINVALID) { - ast_log(LOG_ERROR, "Unable to load config %s\n", stun_conf_file); + ast_log(LOG_WARNING, "Unable to load config %s\n", stun_conf_file); return -1; }