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
1 changed files with 1 additions and 0 deletions

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