Log
7/14/25Less than 1 minute
Debug.Log(any message)
Simply logs a string passed in message.
Parameters:
| Name | Type | Description |
|---|---|---|
| message | any | The string to be logged. |
Usage
---@type any
local message;
Debug:Log(message)Example
Debug.Log("Hello");Simply logs a string passed in message.
| Name | Type | Description |
|---|---|---|
| message | any | The string to be logged. |
---@type any
local message;
Debug:Log(message)Debug.Log("Hello");