Skip to main content

Debug.Log(any message)

Simply logs a string passed in message.

Parameters:

NameTypeDescription
messageanyThe string to be logged.

Usage

---@type any
local message;


Debug:Log(message)

Example

Debug.Log("Hello");