summaryrefslogtreecommitdiffstats
path: root/input
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 /input
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 'input')
-rw-r--r--input/input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/input/input.c b/input/input.c
index b26dd57c33..2b2fe5007c 100644
--- a/input/input.c
+++ b/input/input.c
@@ -1352,7 +1352,7 @@ mp_input_parse_config(char *file) {
fd = open(file,O_RDONLY);
if(fd < 0) {
- mp_msg(MSGT_INPUT,MSGL_ERR,"Can't open input config file %s: %s\n",file,strerror(errno));
+ mp_msg(MSGT_INPUT,MSGL_V,"Can't open input config file %s: %s\n",file,strerror(errno));
return 0;
}
@@ -1378,7 +1378,7 @@ mp_input_parse_config(char *file) {
}
// Empty buffer : return
if(bs <= 1) {
- mp_msg(MSGT_INPUT,MSGL_INFO,"Input config file %s parsed: %d binds\n",file,n_binds);
+ mp_msg(MSGT_INPUT,MSGL_V,"Input config file %s parsed: %d binds\n",file,n_binds);
if(binds)
cmd_binds = binds;
close(fd);
@@ -1519,7 +1519,7 @@ mp_input_init(void) {
// Try global conf dir
file = MPLAYER_CONFDIR "/input.conf";
if(! mp_input_parse_config(file))
- mp_msg(MSGT_INPUT,MSGL_WARN,"Falling back on default (hardcoded) input config\n");
+ mp_msg(MSGT_INPUT,MSGL_V,"Falling back on default (hardcoded) input config\n");
}
else
{