using System;
namespace BepInEx.Logging
{
///
/// Log source that can output log messages.
///
public interface ILogSource : IDisposable
{
///
/// Name of the log source.
///
string SourceName { get; }
///
/// Event that sends the log message. Call to send a log message.
///
event EventHandler LogEvent;
}
}