From 3ebf6f0135d695289a0038ca0e46a8420e90b330 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 15 Nov 2004 09:09:29 +0000 Subject: Reduce excessive verbosity. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2 --- parser-cfg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parser-cfg.c') diff --git a/parser-cfg.c b/parser-cfg.c index b7a9f8022a..587a348e3c 100644 --- a/parser-cfg.c +++ b/parser-cfg.c @@ -42,7 +42,7 @@ int m_config_parse_config_file(m_config_t* config, char *conffile) 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 @@ int m_config_parse_config_file(m_config_t* config, char *conffile) } 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; -- cgit v1.2.3