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