aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/LogSeverity.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-30 09:44:28 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-30 09:44:28 -0400
commit77669562743d725273ecd52677a6521aa0db7949 (patch)
tree573f7e5550098748ec1ed1d95968d3e4fb882db4 /MediaBrowser.Common/Logging/LogSeverity.cs
parent882e20e9a5b05324ee75bb08ac09caec0034a9b4 (diff)
Extracted Logging into a separate, portable class library
Diffstat (limited to 'MediaBrowser.Common/Logging/LogSeverity.cs')
-rw-r--r--MediaBrowser.Common/Logging/LogSeverity.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/MediaBrowser.Common/Logging/LogSeverity.cs b/MediaBrowser.Common/Logging/LogSeverity.cs
deleted file mode 100644
index 2abab1a44..000000000
--- a/MediaBrowser.Common/Logging/LogSeverity.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace MediaBrowser.Common.Logging
-{
- [Flags]
- public enum LogSeverity
- {
- None = 0,
- Debug = 1,
- Info = 2,
- Warning = 4,
- Error = 8
- }
-}