Debug

class Varwin.Debug

Bases: object

Implements application debugging logic.

static Log(message: Any) None

Logs a message at the info level

Example:

Varwin.Debug.Log("test")
static LogWarning(message: Any) None

Logs an error message at the warning level.

Example:

Varwin.Debug.LogWarning("test")
static LogError(message: Any) None

Logs an error message at the error level.

Example:

Varwin.Debug.LogError("test")
static LogDeprecatedCodeError() None

Displays an error message about using outdated code in the editor.

Example:

Varwin.Debug.LogDeprecatedCodeError()