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