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