Skip to content

Api > Debug > Log()


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");