This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Description
|
+ (void)warning:(NSString*)message { |
|
|
|
[Rollbar info:message exception:nil]; |
|
} |
|
|
|
+ (void)warning:(NSString*)message |
|
exception:(NSException*)exception { |
|
|
|
[Rollbar info:message exception:exception data:nil]; |
|
} |
|
|
|
+ (void)warning:(NSString*)message |
|
exception:(NSException*)exception |
|
data:(NSDictionary*)data { |
|
|
|
[Rollbar info:message exception:exception data:data context:nil]; |
|
} |
The 3 Warning log methods all call the info
log function. Is this intended behaviour, or should they be calling
+ (void)warning:(NSString*)message exception:(NSException*)exception data:(NSDictionary*)data context:(NSString*)context
?