diff options
Diffstat (limited to 'MediaBrowser.Common/Logging/TraceLogger.cs')
| -rw-r--r-- | MediaBrowser.Common/Logging/TraceLogger.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Logging/TraceLogger.cs b/MediaBrowser.Common/Logging/TraceLogger.cs new file mode 100644 index 000000000..d152f9780 --- /dev/null +++ b/MediaBrowser.Common/Logging/TraceLogger.cs @@ -0,0 +1,12 @@ +using System.Diagnostics;
+
+namespace MediaBrowser.Common.Logging
+{
+ public class TraceLogger : BaseLogger
+ {
+ protected override void LogEntry(LogRow row)
+ {
+ Trace.WriteLine(row.ToString());
+ }
+ }
+}
|
