Commit 691285f6 authored by Greg Wilson's avatar Greg Wilson

removing RCTLogInfo calls

parent 8f67e48c
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
NSString *optionKey = options[i]; NSString *optionKey = options[i];
HKObjectType *val = [readPermDict objectForKey:optionKey]; HKObjectType *val = [readPermDict objectForKey:optionKey];
if(val != nil) { if(val != nil) {
RCTLogInfo(@"Adding read permissions from options: %@", optionKey); // RCTLogInfo(@"Adding read permissions from options: %@", optionKey);
[readPermSet addObject:val]; [readPermSet addObject:val];
} }
} }
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
NSString *optionKey = options[i]; NSString *optionKey = options[i];
HKObjectType *val = [writePermDict objectForKey:optionKey]; HKObjectType *val = [writePermDict objectForKey:optionKey];
if(val != nil) { if(val != nil) {
RCTLogInfo(@"Adding write permissions from options: %@", optionKey); // RCTLogInfo(@"Adding write permissions from options: %@", optionKey);
[writePermSet addObject:val]; [writePermSet addObject:val];
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment