Log Global

From Virtual World Web Wiki
Jump to: navigation, search

The Log JavaScript global object is available from server world scripts and provides methods for writing to the script debug log

  • This is a JavaScript global object named Log

Remarks [edit]

Methods

void WriteDebug(string message)
Write script debug messages with Debug severity to connected clients with LayerOne permissions
void WriteError(string message)
Write script debug messages with Error severity to connected clients with LayerOne permissions
void WriteFatal(string message)
Write script debug messages with Fatal severity to connected clients with LayerOne permissions
void WriteInfo(string message)
Write script debug messages with Info severity to connected clients with LayerOne permissions
void WriteVerbose(string message)
Write script debug messages with Verbose severity to connected clients with LayerOne permissions
void WriteWarning(string message)
Write script debug messages with Warning severity to connected clients with LayerOne permissions