1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-04 15:34:31 +00:00

TOOLS/lua/autoload: bump the msg-level of some logging

msg.info for when you're potentially adding hundreds of files is way
too spammy and not really useful (autoload loads files, what?). Bump it
up to msg.verbose. Also bump up the previously existing msg.verbose logs
up to msg.debug to keep the difference in log levels. Fixes #12551.
This commit is contained in:
Dudemanguy 2023-10-03 17:15:27 -05:00
parent ace4d252e5
commit d147a06e60

View File

@ -215,10 +215,10 @@ function find_and_add_entries()
local dir, filename = utils.split_path(path) local dir, filename = utils.split_path(path)
msg.trace(("dir: %s, filename: %s"):format(dir, filename)) msg.trace(("dir: %s, filename: %s"):format(dir, filename))
if o.disabled then if o.disabled then
msg.verbose("stopping: autoload disabled") msg.debug("stopping: autoload disabled")
return return
elseif #dir == 0 then elseif #dir == 0 then
msg.verbose("stopping: not a local path") msg.debug("stopping: not a local path")
return return
end end
@ -227,7 +227,7 @@ function find_and_add_entries()
-- check if this is a manually made playlist -- check if this is a manually made playlist
if (pl_count > 1 and autoloaded == nil) or if (pl_count > 1 and autoloaded == nil) or
(pl_count == 1 and EXTENSIONS[string.lower(this_ext)] == nil) then (pl_count == 1 and EXTENSIONS[string.lower(this_ext)] == nil) then
msg.verbose("stopping: manually made playlist") msg.debug("stopping: manually made playlist")
return return
else else
if pl_count == 1 then if pl_count == 1 then
@ -263,7 +263,7 @@ function find_and_add_entries()
end end
if next(files) == nil then if next(files) == nil then
msg.verbose("no other files or directories in directory") msg.debug("no other files or directories in directory")
return return
end end
@ -298,10 +298,10 @@ function find_and_add_entries()
-- skip files that are/were already in the playlist -- skip files that are/were already in the playlist
if not added_entries[file] then if not added_entries[file] then
if direction == -1 then if direction == -1 then
msg.info("Prepending " .. file) msg.verbose("Prepending " .. file)
table.insert(append[-1], 1, {file, pl_current + i * direction + 1}) table.insert(append[-1], 1, {file, pl_current + i * direction + 1})
else else
msg.info("Adding " .. file) msg.verbose("Adding " .. file)
if pl_count > 1 then if pl_count > 1 then
table.insert(append[1], {file, pl_current + i * direction - 1}) table.insert(append[1], {file, pl_current + i * direction - 1})
else else