Make AdminLogsSystem an IoC manager (#8492)
* Make log not entity system * Fixes
This commit is contained in:
17
Content.Shared/Administration/Logs/SharedAdminLogManager.cs
Normal file
17
Content.Shared/Administration/Logs/SharedAdminLogManager.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Content.Shared.Database;
|
||||
|
||||
namespace Content.Shared.Administration.Logs;
|
||||
|
||||
[Virtual]
|
||||
public class SharedAdminLogManager : ISharedAdminLogManager
|
||||
{
|
||||
public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler)
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
public virtual void Add(LogType type, ref LogStringHandler handler)
|
||||
{
|
||||
// noop
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user