Interface ILogListener
A generic log listener that receives log events and can route them to some output (e.g. file, console, socket).
Namespace: BepInEx.Logging
Assembly: BepInEx.Core.dll
Syntax
public interface ILogListener : IDisposable
Properties
What log levels the listener preliminarily wants.
Declaration
LogLevel LogLevelFilter { get; }
Property Value
Type | Description |
---|---|
LogLevel |
Remarks
The filter is used to more efficiently discard log messages that aren't being listened to. As such, the filter should represent the log levels that the listener will always want to process. It is up to the the implementation of LogEvent(Object, LogEventArgs) whether the messages are going to be processed or discarded.
Methods
Handle an incoming log event.
Declaration
void LogEvent(object sender, LogEventArgs eventArgs)
Parameters
Type | Name | Description |
---|---|---|
System.Object |
sender |
Log source that sent the event. Don't use; instead use Source |
LogEventArgs |
eventArgs |
Information about the log message. |