summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2010-08-24 18:45:57 +0000
committerDavid Vossel <dvossel@digium.com>2010-08-24 18:45:57 +0000
commit4be043383cfcc65a6752d2ca0c2e07fc3b9c25d1 (patch)
tree9db1c3e0b23162832ab238ef73a0f69af5bcad9a /res
parentbb9be596717f5f1daaa2d53fd16bf1ff016bd543 (diff)
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
Diffstat (limited to 'res')
-rw-r--r--res/res_stun_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_stun_monitor.c b/res/res_stun_monitor.c
index 54be1e44c..49f231a1b 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;
}