From ee9d481662f84b3fd1f6c17bf708c27e2067c845 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Thu, 21 Feb 2013 01:38:23 -0500 Subject: isolated bdinfo dependancy --- MediaBrowser.Common/Logging/Logger.cs | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'MediaBrowser.Common/Logging/Logger.cs') diff --git a/MediaBrowser.Common/Logging/Logger.cs b/MediaBrowser.Common/Logging/Logger.cs index 33d6b7f73..a6cb6d885 100644 --- a/MediaBrowser.Common/Logging/Logger.cs +++ b/MediaBrowser.Common/Logging/Logger.cs @@ -34,16 +34,6 @@ namespace MediaBrowser.Common.Logging LogEntry(message, LogSeverity.Debug, null, paramList); } - /// - /// Logs the error. - /// - /// The message. - /// The param list. - public static void LogError(string message, params object[] paramList) - { - LogEntry(message, LogSeverity.Error, null, paramList); - } - /// /// Logs the exception. /// @@ -54,17 +44,6 @@ namespace MediaBrowser.Common.Logging { LogEntry(message, LogSeverity.Error, ex, paramList); } - - /// - /// Fatals the exception. - /// - /// The message. - /// The ex. - /// The param list. - public static void FatalException(string message, Exception ex, params object[] paramList) - { - LogEntry(message, LogSeverity.Fatal, ex, paramList); - } /// /// Logs the warning. -- cgit v1.2.3