From a6f3cd670f492a3474bf4695f1a8a6302fc3ed56 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 8 May 2018 21:31:26 +0100 Subject: WinGui: Remove Logging abstraction from the Services library. Let the library consumers decide how to log instead utilising the log events instead. --- .../Services/Logging/Model/LogLevel.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs (limited to 'win/CS/HandBrakeWPF/Services/Logging/Model/LogLevel.cs') 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 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// +// +// The log level. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.Services.Logging.Model +{ + /// + /// The log level. + /// + public enum LogLevel + { + /// + /// The info. + /// + Info, + + /// + /// The warning. + /// + Warning, + + /// + /// The error. + /// + Error, + + /// + /// The debug. + /// + Debug, + + /// + /// Trace Level Logging. + /// + Trace, + } +} -- cgit v1.2.3