diff parser-cfg.c @ 13946:e632b43f0598

Reduce excessive verbosity.
author diego
date Mon, 15 Nov 2004 09:09:29 +0000
parents 522afd56703c
children 63909962d3fc
line wrap: on
line diff
--- a/parser-cfg.c	Sun Nov 14 22:25:49 2004 +0000
+++ b/parser-cfg.c	Mon Nov 15 09:09:29 2004 +0000
@@ -42,7 +42,7 @@
 	assert(config != NULL);
 	//	assert(conf_list != NULL);
 #endif
-	mp_msg(MSGT_CFGPARSER,MSGL_INFO,"Reading config file %s", conffile);
+	mp_msg(MSGT_CFGPARSER,MSGL_V,"Reading config file %s", conffile);
 
 	if (recursion_depth > MAX_RECURSION_DEPTH) {
 		mp_msg(MSGT_CFGPARSER,MSGL_ERR,": too deep 'include'. check your configfiles\n");
@@ -59,7 +59,7 @@
 	}
 
 	if ((fp = fopen(conffile, "r")) == NULL) {
-	  mp_msg(MSGT_CFGPARSER,MSGL_ERR,": %s\n", strerror(errno));
+	  mp_msg(MSGT_CFGPARSER,MSGL_V,": %s\n", strerror(errno));
 		free(line);
 		ret = 0;
 		goto out;