diff options
author | sr55 <[email protected]> | 2018-05-08 21:31:26 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-05-08 21:31:26 +0100 |
commit | a6f3cd670f492a3474bf4695f1a8a6302fc3ed56 (patch) | |
tree | f862920629c676c23d095da6e9cb2877bb1f413d /win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs | |
parent | 1a16ebead7e49a214276859f53ce18a0c844f102 (diff) |
WinGui: Remove Logging abstraction from the Services library. Let the library consumers decide how to log instead utilising the log events instead.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs b/win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs new file mode 100644 index 000000000..07f35e304 --- /dev/null +++ b/win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs @@ -0,0 +1,42 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <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 HandBrakeWPF.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, + + /// <summary> + /// Trace Level Logging. + /// </summary> + Trace, + } +} |