diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogLevel.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogLevel.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogLevel.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogLevel.cs new file mode 100644 index 000000000..c2e2b8f0a --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogLevel.cs @@ -0,0 +1,37 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="LogLevel.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The log level.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.ApplicationServices.Services.Logging.Model
+{
+ /// <summary>
+ /// The log level.
+ /// </summary>
+ public enum LogLevel
+ {
+ /// <summary>
+ /// The info.
+ /// </summary>
+ info,
+
+ /// <summary>
+ /// The warning.
+ /// </summary>
+ warning,
+
+ /// <summary>
+ /// The error.
+ /// </summary>
+ error,
+
+ /// <summary>
+ /// The debug.
+ /// </summary>
+ debug,
+ }
+}
|