namespace Wayne.Lib.Log { /// /// The different types of log exceptions. /// public enum LogExceptionType { #region Fields /// /// The log config file has a bad format. /// InvalidLogConfigFile, /// /// The internal config schema file is corrupt. /// CorruptConfigSchemaFile, /// /// This operation is not allowed since the Logger is closed. /// LoggerClosed, /// /// There is no configuration file specified. /// NoConfigFile, /// /// The specified configuration file is missing. /// MissingConfigFile, /// /// When an exception has occurred within the thread's execution method, /// the Logger will fire an OnThreadException holding this exception. /// GeneralThreadException, #endregion } }