You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
locallog=require("loglua")
-- Create specific loggerslocalnetworkLog=log.inSection("network")
localdbLog=log.inSection("database")
localuiLog=log.inSection("ui")
-- Use in different parts of codenetworkLog("Connecting...")
dbLog("Query executed")
uiLog("Screen loaded")
-- Save each section to separate filelog.save("./logs/", "network.log", "network")
log.save("./logs/", "database.log", "database")
log.save("./logs/", "ui.log", "ui")
Conditional debug
locallog=require("loglua")
localDEBUG=trueifDEBUGthenlog.activateDebugMode()
endlog.debug("This message only shows if DEBUG=true")