jellyfin/MediaBrowser.Common/Logging/TraceLogger.cs
LukePulverenti Luke Pulverenti luke pulverenti 2467ca9668 Moved some entities to the main project
2012-09-10 21:34:02 -04:00

12 lines
256 B
C#

using System.Diagnostics;
namespace MediaBrowser.Common.Logging
{
public class TraceLogger : BaseLogger
{
protected override void LogEntry(LogRow row)
{
Trace.WriteLine(row.ToString());
}
}
}