IsDebugEnabled
The FireflyAIO Lua API includes an IsDebugEnabled
function that allows you to check if Debug mode is enabled. This function returns a boolean value: true
if Debug mode is enabled, and false
if it is not. You can use this function to conditionally execute debug-specific code, such as printing debug information to the console.
Using the IsDebugEnabled Function
The IsDebugEnabled
function is simple to use. You call it without any arguments, and it returns a boolean indicating the Debug mode status.
Here is an example of how to use the IsDebugEnabled
function:
Example Usage in a Custom Checker
You can use the IsDebugEnabled
function to conditionally include debug statements in your custom checker:
Last updated
Was this helpful?