typedef NS_ENUM()

in Classes/TLSDeclarations.h [43:61]


typedef NS_ENUM(NSInteger, TLSLogLevel)
{
    /** Present for syslog compatability */
    TLSLogLevelEmergency = 0,
    /** Present for syslog compatability */
    TLSLogLevelAlert,
    /** Present for syslog compatability */
    TLSLogLevelCritical,
    /** Use `TLSLogError` (See TLSLog) */
    TLSLogLevelError,
    /** Use `TLSLogWarning` (See TLSLog) */
    TLSLogLevelWarning,
    /** Present for syslog compatability */
    TLSLogLevelNotice,
    /** Use `TLSLogInformation` (See TLSLog) */
    TLSLogLevelInformation,
    /** Use `TLSLogDebug` (See TLSLog) */
    TLSLogLevelDebug
};