aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/Logger.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-21 01:38:23 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-21 01:38:23 -0500
commitee9d481662f84b3fd1f6c17bf708c27e2067c845 (patch)
treee9bd70c78a8dfbe262a255bc1df14607a565e50f /MediaBrowser.Common/Logging/Logger.cs
parentae4ffa75be378497d8db210c6864cde40f7c75f9 (diff)
isolated bdinfo dependancy
Diffstat (limited to 'MediaBrowser.Common/Logging/Logger.cs')
-rw-r--r--MediaBrowser.Common/Logging/Logger.cs21
1 files changed, 0 insertions, 21 deletions
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
@@ -35,16 +35,6 @@ namespace MediaBrowser.Common.Logging
}
/// <summary>
- /// Logs the error.
- /// </summary>
- /// <param name="message">The message.</param>
- /// <param name="paramList">The param list.</param>
- public static void LogError(string message, params object[] paramList)
- {
- LogEntry(message, LogSeverity.Error, null, paramList);
- }
-
- /// <summary>
/// Logs the exception.
/// </summary>
/// <param name="message">The message.</param>
@@ -54,17 +44,6 @@ namespace MediaBrowser.Common.Logging
{
LogEntry(message, LogSeverity.Error, ex, paramList);
}
-
- /// <summary>
- /// Fatals the exception.
- /// </summary>
- /// <param name="message">The message.</param>
- /// <param name="ex">The ex.</param>
- /// <param name="paramList">The param list.</param>
- public static void FatalException(string message, Exception ex, params object[] paramList)
- {
- LogEntry(message, LogSeverity.Fatal, ex, paramList);
- }
/// <summary>
/// Logs the warning.