From 4be043383cfcc65a6752d2ca0c2e07fc3b9c25d1 Mon Sep 17 00:00:00 2001
From: David Vossel <dvossel@digium.com>
Date: Tue, 24 Aug 2010 18:45:57 +0000
Subject: [PATCH] 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
---
 res/res_stun_monitor.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 	}
 
-- 
GitLab