1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-22 06:42:03 +00:00

lua: implement mp.msg.trace

This commit is contained in:
Niklas Haas 2017-10-07 22:40:12 +02:00 committed by Kevin Mitchell
parent d64c33c518
commit 1afdeee1ad

View File

@ -440,6 +440,7 @@ mp.msg = {
info = function(...) return mp.log("info", ...) end,
verbose = function(...) return mp.log("v", ...) end,
debug = function(...) return mp.log("debug", ...) end,
trace = function(...) return mp.log("trace", ...) end,
}
_G.print = mp.msg.info