Class Logger
A namespace wide Logger class, which automatically creates a ManualLogSource
for every Class from which it is being called.
Inherited Members
Namespace: Jotunn
Assembly: Jotunn.dll
Syntax
public class Logger
Fields
| Name | Description |
|---|---|
| ShowDate | Add DateTime to the log output |
Methods
| Name | Description |
|---|---|
| LogDebug(BepInPlugin, object) | Logs a message with Debug level. This is used when the responsible mod is different from mod logging this message. |
| LogDebug(object) | Logs a message with Debug level. |
| LogError(BepInPlugin, object) | Logs a message with Error level. This is used when the responsible mod is different from mod logging this message. |
| LogError(object) | Logs a message with Error level. |
| LogFatal(BepInPlugin, object) | Logs a message with Fatal level. This is used when the responsible mod is different from mod logging this message. |
| LogFatal(object) | Logs a message with Fatal level. |
| LogInfo(BepInPlugin, object) | Logs a message with Info level. This is used when the responsible mod is different from mod logging this message. |
| LogInfo(object) | Logs a message with Info level. |
| LogMessage(BepInPlugin, object) | Logs a message with Message level. This is used when the responsible mod is different from mod logging this message. |
| LogMessage(object) | Logs a message with Message level. |
| LogWarning(BepInPlugin, object) | Logs a message with Warning level. This is used when the responsible mod is different from mod logging this message. |
| LogWarning(object) | Logs a message with Warning level. |