Table of Contents

Class DebugLog

Namespace
Cobilas.GodotEngine.Utility
Assembly
com.cobilas.godot.utility.dll

Static class to print messages to the console.

public static class DebugLog
Inheritance
DebugLog
Inherited Members

Fields

PrintTrace

Allows you to print the complete log trace.

public static bool PrintTrace

Field Value

bool

Methods

ErroLog(params object[])

Allows you to print an error log to the console.

public static void ErroLog(params object[] message)

Parameters

message object[]

The message that will be printed to the console.

ExceptionLog(Exception)

Allows you to print an exception log to the console.

public static void ExceptionLog(Exception ex)

Parameters

ex Exception

The exception that will be printed to the console.

Log(params object[])

Allows you to print a log to the console.

public static void Log(params object[] message)

Parameters

message object[]

The message that will be printed to the console.