aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-21 14:39:47 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-21 14:39:47 -0400
commit0a48b5e31aa712acd988626a88c52c47467945b2 (patch)
treed2f9cc9bc6aacca3c1cd847bcdfaa209566b7231 /MediaBrowser.Common/Logging
parent3f557077550b79e2c209a4041a9318886b79ed14 (diff)
Added a BaseKernel for the UI and Server to share, and made some other minor re-organizations.
Diffstat (limited to 'MediaBrowser.Common/Logging')
-rw-r--r--MediaBrowser.Common/Logging/BaseLogger.cs1
-rw-r--r--MediaBrowser.Common/Logging/LogRow.cs1
-rw-r--r--MediaBrowser.Common/Logging/LogSeverity.cs14
3 files changed, 14 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Logging/BaseLogger.cs b/MediaBrowser.Common/Logging/BaseLogger.cs
index 407c8baa76..51c6632d56 100644
--- a/MediaBrowser.Common/Logging/BaseLogger.cs
+++ b/MediaBrowser.Common/Logging/BaseLogger.cs
@@ -2,7 +2,6 @@
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 d1e234250c..39c69eb454 100644
--- a/MediaBrowser.Common/Logging/LogRow.cs
+++ b/MediaBrowser.Common/Logging/LogRow.cs
@@ -1,7 +1,6 @@
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
new file mode 100644
index 0000000000..2abab1a448
--- /dev/null
+++ b/MediaBrowser.Common/Logging/LogSeverity.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace MediaBrowser.Common.Logging
+{
+ [Flags]
+ public enum LogSeverity
+ {
+ None = 0,
+ Debug = 1,
+ Info = 2,
+ Warning = 4,
+ Error = 8
+ }
+}