mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
player: demote matroska ordered chapter scanning messages to Verbose
Causes a lot of terminal spam on large folders and is not actually useful except maybe for debugging.
This commit is contained in:
@@ -382,7 +382,7 @@ static int demux_mkv_read_info(demuxer_t *demuxer)
|
||||
}
|
||||
}
|
||||
}
|
||||
MP_INFO(demuxer, "This is not one of the wanted files. "
|
||||
MP_VERBOSE(demuxer, "This is not one of the wanted files. "
|
||||
"Stopping attempt to open.\n");
|
||||
res = -2;
|
||||
}
|
||||
|
||||
@@ -294,7 +294,7 @@ static int find_ordered_chapter_sources(struct MPContext *mpctx,
|
||||
for (int i = 0; i < num_filenames; i++) {
|
||||
if (!missing(*sources, *num_sources))
|
||||
break;
|
||||
MP_INFO(mpctx, "Checking file %s\n", filenames[i]);
|
||||
MP_VERBOSE(mpctx, "Checking file %s\n", filenames[i]);
|
||||
check_file(mpctx, sources, num_sources, uids, filenames[i], 0);
|
||||
}
|
||||
} while (old_source_count != *num_sources);
|
||||
|
||||
Reference in New Issue
Block a user