Method LogDebug
| Improve this Doc View SourceLogDebug(object)
Logs a message with BepInEx.Logging.LogLevel.Debug level.
Declaration
public static void LogDebug(object data)
Parameters
Type | Name | Description |
---|---|---|
object | data | Data to log |
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.
Declaration
public static void LogDebug(BepInPlugin sourceMod, object data)
Parameters
Type | Name | Description |
---|---|---|
BepInPlugin | sourceMod | Known mod that is responsible for this log |
object | data | Data to log |