aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/Logger.cs
diff options
context:
space:
mode:
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.