diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 01:38:23 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 01:38:23 -0500 |
| commit | ee9d481662f84b3fd1f6c17bf708c27e2067c845 (patch) | |
| tree | e9bd70c78a8dfbe262a255bc1df14607a565e50f /MediaBrowser.Common/Logging/Logger.cs | |
| parent | ae4ffa75be378497d8db210c6864cde40f7c75f9 (diff) | |
isolated bdinfo dependancy
Diffstat (limited to 'MediaBrowser.Common/Logging/Logger.cs')
| -rw-r--r-- | MediaBrowser.Common/Logging/Logger.cs | 21 |
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. |
