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

CloseStream()

Allows the termination of a log stream.

public static void CloseStream()

Exceptions

InvalidOperationException

Occurs when the flow is already closed.

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.

LogToStream(string?, bool)

Allows you to redirect logs to a log file.

public static void LogToStream(string? filePath, bool clear = false)

Parameters

filePath string

The path of the log file.

clear bool

true to have the log file cleared.

Exceptions

ArgumentNullException

When the FilePath parameter is null.

InvalidOperationException

Occurs when the flow is still open.