diff options
author | wm4 <wm4@nowhere> | 2012-07-29 21:19:36 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-07-30 01:45:07 +0200 |
commit | 93de744a2bf97590eab5ae57425962f8635c483c (patch) | |
tree | 259c627e0c1db7407219fa868fbbfecf5ef911e3 /sub | |
parent | 521a5980681885a8bc41a04c4c353a64c2f47992 (diff) | |
download | mpv-93de744a2bf97590eab5ae57425962f8635c483c.tar.bz2 mpv-93de744a2bf97590eab5ae57425962f8635c483c.tar.xz |
sub: silence output of subtitle search message
This message is not so interesting.
Diffstat (limited to 'sub')
-rw-r--r-- | sub/find_subfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/find_subfiles.c b/sub/find_subfiles.c index cb421dac77..b073a722c6 100644 --- a/sub/find_subfiles.c +++ b/sub/find_subfiles.c @@ -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); |