mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
13 lines
256 B
C#
13 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());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|