aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/Logger.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-30 09:44:28 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-30 09:44:28 -0400
commit77669562743d725273ecd52677a6521aa0db7949 (patch)
tree573f7e5550098748ec1ed1d95968d3e4fb882db4 /MediaBrowser.Common/Logging/Logger.cs
parent882e20e9a5b05324ee75bb08ac09caec0034a9b4 (diff)
Extracted Logging into a separate, portable class library
Diffstat (limited to 'MediaBrowser.Common/Logging/Logger.cs')
-rw-r--r--MediaBrowser.Common/Logging/Logger.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/MediaBrowser.Common/Logging/Logger.cs b/MediaBrowser.Common/Logging/Logger.cs
deleted file mode 100644
index d1ae9b8f3..000000000
--- a/MediaBrowser.Common/Logging/Logger.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-
-namespace MediaBrowser.Common.Logging
-{
- public static class Logger
- {
- public static BaseLogger LoggerInstance { get; set; }
-
- public static void LogInfo(string message, params object[] paramList)
- {
- LoggerInstance.LogInfo(message, paramList);
- }
-
- public static void LogDebugInfo(string message, params object[] paramList)
- {
- LoggerInstance.LogDebugInfo(message, paramList);
- }
-
- public static void LogError(string message, params object[] paramList)
- {
- LoggerInstance.LogError(message, paramList);
- }
-
- public static void LogException(string message, Exception ex, params object[] paramList)
- {
- LoggerInstance.LogException(message, ex, paramList);
- }
-
- public static void LogWarning(string message, params object[] paramList)
- {
- LoggerInstance.LogWarning(message, paramList);
- }
- }
-}