typedef NS_ENUM(NSUInteger, RollbarLevel) {
RollbarLevel_Info,
RollbarLevel_Debug,
RollbarLevel_Warning,
RollbarLevel_Critical,
RollbarLevel_Error
};
Priority of Info and Debug log levels is clearly reversed. This causes decisions about what log messages to send to be incorrect.
In RollbarLevel.h:
Priority of Info and Debug log levels is clearly reversed. This causes decisions about what log messages to send to be incorrect.