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 --- input/input.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'input') 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 { -- cgit v1.2.3