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-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/LogSeverity.cs
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/LogSeverity.cs')
-rw-r--r--MediaBrowser.Common/Logging/LogSeverity.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Logging/LogSeverity.cs b/MediaBrowser.Common/Logging/LogSeverity.cs
new file mode 100644
index 000000000..2abab1a44
--- /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
+ }
+}