summaryrefslogtreecommitdiffstats
path: root/parser-cfg.c
diff options
context:
space:
mode:
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;