From baedafbeb92db3ddf434f038984970bf0a6ac0c1 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Sun, 15 Jul 2012 16:27:07 -0400 Subject: Switched to service stack json. Added more api enhancements. --- MediaBrowser.Common/Logging/BaseLogger.cs | 1 + MediaBrowser.Common/Logging/LogRow.cs | 1 + MediaBrowser.Common/Logging/LogSeverity.cs | 18 ------------------ 3 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 MediaBrowser.Common/Logging/LogSeverity.cs (limited to 'MediaBrowser.Common/Logging') diff --git a/MediaBrowser.Common/Logging/BaseLogger.cs b/MediaBrowser.Common/Logging/BaseLogger.cs index 51c6632d56..407c8baa76 100644 --- a/MediaBrowser.Common/Logging/BaseLogger.cs +++ b/MediaBrowser.Common/Logging/BaseLogger.cs @@ -2,6 +2,7 @@ using System.Diagnostics; using System.Text; using System.Threading; +using MediaBrowser.Model.Logging; namespace MediaBrowser.Common.Logging { diff --git a/MediaBrowser.Common/Logging/LogRow.cs b/MediaBrowser.Common/Logging/LogRow.cs index 39c69eb454..d1e234250c 100644 --- a/MediaBrowser.Common/Logging/LogRow.cs +++ b/MediaBrowser.Common/Logging/LogRow.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Text; +using MediaBrowser.Model.Logging; namespace MediaBrowser.Common.Logging { diff --git a/MediaBrowser.Common/Logging/LogSeverity.cs b/MediaBrowser.Common/Logging/LogSeverity.cs deleted file mode 100644 index b9578522e5..0000000000 --- a/MediaBrowser.Common/Logging/LogSeverity.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace MediaBrowser.Common.Logging -{ - [Flags] - public enum LogSeverity - { - None = 0, - Debug = 1, - Info = 2, - Warning = 4, - Error = 8 - } -} -- cgit v1.2.3