API:Trace
Aus WARWiki
Keine Beschreibung verfügbar.
Nutzung
API:Trace()
Diese Funktion übernimmt keine Argumente.
Diese Funktion gibt keine Werte zurück.
Source Code
function TRACE (event, line)
local info = debug.getinfo(2)
if info.short_src ~= nil then
local string = towstring( string.format( "[%s]:%d", info.short_src, info.currentline ) )
LogLuaMessage( "Lua", SystemData.UiLogFilters.FUNCTION, string )
end
end