[svn-commits] dvossel: trunk r283456 - /trunk/res/res_stun_monitor.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 24 13:45:59 CDT 2010


Author: dvossel
Date: Tue Aug 24 13:45:57 2010
New Revision: 283456

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=283456
Log:
This fix downgrades the ERROR message indicating no res_stun_monitor.conf to a WARNING message.

Modified:
    trunk/res/res_stun_monitor.c

Modified: trunk/res/res_stun_monitor.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_stun_monitor.c?view=diff&rev=283456&r1=283455&r2=283456
==============================================================================
--- trunk/res/res_stun_monitor.c (original)
+++ trunk/res/res_stun_monitor.c Tue Aug 24 13:45:57 2010
@@ -218,7 +218,7 @@
 
 	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;
 	}
 




More information about the svn-commits mailing list