19 lines
413 B
C#
19 lines
413 B
C#
using System;
|
|
|
|
namespace GameServiceWarden.Core.Logging
|
|
{
|
|
public class FileLogReceiver : ILogReceiver
|
|
{
|
|
public LogLevel Level => LogLevel.INFO;
|
|
|
|
public void Flush()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void LogMessage(string message, DateTime time, LogLevel level)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |