// -------------------------------------------------------------------------------------------------------------------- // // 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 HandBrake.ApplicationServices.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, } }