mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
22 lines
456 B
C#
22 lines
456 B
C#
using Robust.Shared.Interfaces.Log;
|
|
|
|
namespace Robust.Shared.Log
|
|
{
|
|
public sealed class ProxyLogManager : ILogManager
|
|
{
|
|
private readonly ILogManager _impl;
|
|
|
|
public ProxyLogManager(ILogManager impl)
|
|
{
|
|
_impl = impl;
|
|
}
|
|
|
|
ISawmill ILogManager.RootSawmill => _impl.RootSawmill;
|
|
|
|
ISawmill ILogManager.GetSawmill(string name)
|
|
{
|
|
return _impl.GetSawmill(name);
|
|
}
|
|
}
|
|
}
|