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
Debug is disabled by default, so to enable debug, set Noir.Debugging.Enabled
to true
.
Trackers
A tracker represents a function that is being tracked by Noir's debugging suite. You can track a function easily like so:
You can then overwrite the function with the version that comes with debugging like so:
Now, when you call a tracked function that has been overwritten with :Mount()
, statistics like how long it took to execute the function, the amount of times the function has been called and the average execution time are gathered and saved within the tracker. You can then access the statistics at any point via the tracker's attributes.
Viewing All Stats
The best part about the debugging is being able to sort all tracked functions based on how well they perform or how recently they've been called, and then show you the stats to determine where you should optimize. You can do this with a single method call too.
This will print out all tracked functions and their statistics in order of performance (least performant being shown first).
If you need the tracked functions sorted and returned, you can use the Get
variant instead.
Tracking In Bulk
Tracking every function one-by-one is tedious however, so instead if your functions are in a table, or better yet, a service, you can track them like so:
Tables
Services
Error Detection
Unfortunately, Noir's debugging tools does not allow you to detect errors that well. It is recommended to use SSSWTool instead as it detects errors and provides extremely accurate traceback so you can see exactly where your code errored.
And More...
See the API Referencefor all available methods to mess with.
Last updated