namespace QFSW.QC { /// /// Thresholds for log severities. /// public enum LoggingThreshold { Never = 0, Exception = 1, Error = 2, Warning = 3, Always = 4 } }