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