Console #

Global print and structured engine logging via core.G.my_console.

print #

print(...)

Global UTF-8 console log (routes to engine console with script file:line prefix).

print("Hello", getLocalFrameAdvantage())
1

core.G.my_console #

core.G.my_console(parts)

Write structured lines to engine log. parts is array of strings.

core.G.my_console({ "MyTag", "value=" .. tostring(getStageId()) })
1