\"THREAD WARNING: [\'Console\'] took \'81.661865\' ms. Plugin should use a background thread.\"
While running iOS Phonegap project.
As per this. solved my warning issue
I found warning can be ignored .But this can be solved by adding background thread using this loop:(In CDVLogger.m)
[self.commandDelegate runInBackground:^{
//add your code here
}
Now this looks as below for console warning:
- (void)logLevel:(CDVInvokedUrlCommand*)command
{
[self.commandDelegate runInBackground:^{
id level = [command argumentAtIndex:0];
id message = [command argumentAtIndex:1];
if ([level isEqualToString:@"LOG"]) {
NSLog(@"%@", message);
} else {
NSLog(@"%@: %@", level, message);
}
}];
}