namespace Robust.Shared.Log
{
///
/// Manages logging sawmills.
///
///
public interface ILogManager
{
///
/// The "root" sawmill every other sawmill is parented to.
///
ISawmill RootSawmill { get; }
///
/// Gets the sawmill with the specified name. Creates a new one if necessary.
///
ISawmill GetSawmill(string name);
}
}