Purpose
Writes a message to Notch’s log window.
Syntax
void Log(String content);
- content: The string to be written to the log.
Example
function Update() {
Log("Hello world");
}
Writes a message to Notch’s log window.
*Per-frame log output should be used sparingly as it can severely impact framerate.
void Log(String content);
function Update() {
Log("Hello world");
}
*Use View->Log Window to see the log file.