summaryrefslogtreecommitdiffstats
path: root/parser-cfg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-15 09:09:29 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-15 09:09:29 +0000
commit3ebf6f0135d695289a0038ca0e46a8420e90b330 (patch)
treee57c72ba23b51a569a2df301d372d3726ff5b7a1 /parser-cfg.c
parentccc9c05e290349ed29bd44b9d5c37887ab85e7b3 (diff)
downloadmpv-3ebf6f0135d695289a0038ca0e46a8420e90b330.tar.bz2
mpv-3ebf6f0135d695289a0038ca0e46a8420e90b330.tar.xz
Reduce excessive verbosity.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'parser-cfg.c')
-rw-r--r--parser-cfg.c4
1 files changed, 2 insertions, 2 deletions
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;