using Serilog.Events;
namespace Robust.Shared.Log
{
///
/// Formats and prints a log message to an output source.
///
public interface ILogHandler
{
///
/// Logs a message to.. somewhere.
/// You choose that somewhere.
///
///
/// This method can be called from multiple threads so make sure it's thread safe!
///
/// The name of the sawmill that this message was raised on.
/// The message to log.
void Log(string sawmillName, LogEvent message);
}
}