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
| uint | verbosity |
Verbosity level of this message. |
| LogType | type |
Message type (info, warning, error or debug). |
| string | message |
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