
πDebugging
This page will go over Noir's debugging system which can be used to figure out where you can optimize your code. You can track the statistics and performance of individual functions, services, etc.
Enabling Debug
Noir.Started:Once(function()
-- ...
end)
Noir.Debugging.Enabled = trueTrackers
function doTheFoo()
print("Hello world!")
end
local tracker = Noir.Debugging:TrackFunction("doTheFoo", doTheFoo)doTheFoo = tracker:Mount()Viewing All Stats
Tracking In Bulk
Tables
Services
Error Detection
And More...
Last updated