Report console logs with log levels.

This commit is contained in:
Salma ElTarzi 2017-09-18 15:44:39 +02:00
parent 42457643c2
commit 5d4c58cbdd

View File

@ -455,7 +455,23 @@ RCTLogFunction InstabugReactLogFunction = ^(
va_list arg_list; va_list arg_list;
IBGNSLog(compeleteLog, arg_list); switch(level) {
case RCTLogLevelTrace:
IBGNSLogWithLevel(compeleteLog, arg_list, IBGLogLevelTrace);
break;
case RCTLogLevelInfo:
IBGNSLogWithLevel(compeleteLog, arg_list, IBGLogLevelInfo);
break;
case RCTLogLevelWarning:
IBGNSLogWithLevel(compeleteLog, arg_list, IBGLogLevelWarning);
break;
case RCTLogLevelError:
IBGNSLogWithLevel(compeleteLog, arg_list, IBGLogLevelError);
break;
case RCTLogLevelFatal:
IBGNSLogWithLevel(compeleteLog, arg_list, IBGLogLevelFatal);
break;
}
}; };
@end @end