sub: silence output of subtitle search message

This message is not so interesting.
This commit is contained in:
wm4 2012-07-29 21:19:36 +02:00
parent 521a598068
commit 93de744a2b
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static void append_dir_subtitles(struct MPOpts *opts,
DIR *d = opendir(path0);
if (!d)
goto out;
mp_msg(MSGT_SUBREADER, MSGL_INFO, "Load subtitles in %.*s\n", BSTR_P(path));
mp_msg(MSGT_SUBREADER, MSGL_V, "Load subtitles in %.*s\n", BSTR_P(path));
struct dirent *de;
while ((de = readdir(d))) {
struct bstr dename = bstr0(de->d_name);