Logging
LuAria includes a builtin log console you can open at any time:
- Press and
holdthe LuAria loader button (3d-touch) - Tap
Show Mini Consolefrom the menu
Logs in the console are color-coded for easy debugging:
White:normal outputYellow:warningsRed:errors
API
It is recommanded to use loader.log(...) since it's directly hooked up with the loaders console.
loader.log("The")
loader.log("loader", "checked", "here.")
Use standard print(...) to send a message to the console:
print("Lua was here!")
And that is how logging is done within LuAria its pretty straight foward, happy modding :)