mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
278 B
C#
13 lines
278 B
C#
using Robust.Shared.Log;
|
|
|
|
namespace Robust.Packaging;
|
|
|
|
public sealed class PackageLoggerConsole : IPackageLogger
|
|
{
|
|
public void Log(LogLevel level, string msg)
|
|
{
|
|
Console.Write(ConsoleLogHandler.LogLevelToString(level));
|
|
Console.WriteLine(msg);
|
|
}
|
|
}
|