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