Log
Log.Print(message) writes one runtime-safe diagnostic line. Messages appear
in the editor Console and the available runtime debug output.
function Start(gameObjectId)
Log.Print("Started " .. GameObject.GetName(gameObjectId))
end
Logging formats values as strings and can consume scripting time. Avoid per-frame production logs; prefer state-transition and error diagnostics.