Skip to content
SiteEmail

cohtml.LogWriter

A class implementing the ILogWriter interface. Responsible for outputting logs provided by the LogHandler to the Unity3D console.

Inherits from cohtml.ILogWriter

Name
voidLog(Severity severity, string message)
Logs the provided message with the given severity in Unity3D’s console.
voidLog(string message)
Log an info message to the implemented LogWriter instance.
voidLogWarning(string message)
Log a warning message to the implemented LogWriter instance.
voidLogError(string message)
Log an error message to the implemented LogWriter instance.
Name
ILogWriterWriter
Gets a Singleton instance of the ILogWriter. Sets this instance to a value.
void Log(
Severity severity,
string message
)

Logs the provided message with the given severity in Unity3D’s console.

Reimplements: cohtml.ILogWriter.Log

static void Log(
string message
)

Log an info message to the implemented LogWriter instance.

static void LogWarning(
string message
)

Log a warning message to the implemented LogWriter instance.

static void LogError(
string message
)

Log an error message to the implemented LogWriter instance.

static ILogWriter Writer;

Gets a Singleton instance of the ILogWriter. Sets this instance to a value.