LogDebug
Adds a message to the logger in the Debug category.
🔁 Function
void LogDebug(message: string);
⚙️ Parameters
Name | Type | Description |
---|---|---|
message |
String | The string value that is to be written to the logger |
↩️ Return Value
None
📝 Examples
LogDebug("This is a debug log.");
LogDebug(`The value is ${i}`);