Plane.Libraries/Plane/Logging/DebugLogger.cs
2017-02-27 02:04:13 +08:00

21 lines
452 B
C#

using System.Diagnostics;
namespace Plane.Logging
{
public class DebugLogger : Logger
{
public DebugLogger()
{
}
public DebugLogger(ILogger loggerToDecorate) : base(loggerToDecorate)
{
}
protected override void LogCore(string message, Category category, Priority priority)
{
Debug.WriteLine(BuildStandardLogEntry(message, category, priority));
}
}
}