in Classes/TLSRollingFileOutputStream.h [33:44]
typedef NS_ENUM(TLSFileOutputEvent, TLSRollingFileOutputEvent) {
/** when the `TLSFileOutputStream` is initialized */
TLSRollingFileOutputEventInitialize,
/** when `tls_outputLogInfo:` is called on the `TLSFileOutputStream` */
TLSRollingFileOutputEventOutputLogData,
/** when the `TLSRollingFileOutputStream`'s single log file size limit has been reached and it is rolling over the log */
TLSRollingFileOutputEventRolloverLogs,
/** when the `TLSRollingFileOutputStream` has reached its log limit and needs to prune its old logs */
TLSRollingFileOutputEventPruneLogs,
/** occurs during `TLSRollingFileOutputEventPruneLogs` */
TLSRollingFileOutputEventPurgeLog
};