mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
Reduce excessive verbosity.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user