Interface ILogSource

Log source that can output log messages.

Inherited Members
System.IDisposable.Dispose()
Namespace: BepInEx.Logging
Assembly: BepInEx.dll
Syntax
public interface ILogSource : IDisposable

Properties

SourceName

Name of the log source.

Declaration
string SourceName { get; }
Property Value
Type Description
System.String

Events

LogEvent

Event that sends the log message. Call System.EventHandler.Invoke(System.Object,System.EventArgs) to send a log message.

Declaration
event EventHandler<LogEventArgs> LogEvent
Event Type
Type Description
System.EventHandler<LogEventArgs>