mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-18 20:43:02 -05: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());
|
|
}
|
|
}
|
|
}
|