Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void Log(uint, LogType, string)

Declaration

public abstract void Log(
    uint verbosity,
    LogType type,
    string message
)

Summary

Appends an entry to the log. Derived classes implement this to put the log data where necessary.

Parameters

uintverbosity Verbosity level of this message.
LogTypetype Message type (info, warning, error or debug).
stringmessage The message itself.

Remarks

Note that the various specialised functions such as LoggerBase.Warn(string) simply call this method to do the work.

See also