From 99ce654c94c55072b05d6bb42750bd048e6bd130 Mon Sep 17 00:00:00 2001 From: Elad Gil Date: Tue, 22 Aug 2017 11:49:36 +0300 Subject: [PATCH] Update RNFSManager.m removed debug NSLogs --- RNFSManager.m | 2 -- 1 file changed, 2 deletions(-) diff --git a/RNFSManager.m b/RNFSManager.m index d5193c42..d6a5f0f8 100755 --- a/RNFSManager.m +++ b/RNFSManager.m @@ -470,7 +470,6 @@ - (dispatch_queue_t)methodQueue [self.downloaders setValue:downloader forKey:[jobId stringValue]]; if (uuid) { - NSLog(@"setting uuid: %@", uuid); if (!self.uuids) self.uuids = [[NSMutableDictionary alloc] init]; [self.uuids setValue:uuid forKey:[jobId stringValue]]; } @@ -514,7 +513,6 @@ - (dispatch_queue_t)methodQueue NSString *uuid = [self.uuids objectForKey:[jobId stringValue]]; CompletionHandler completionHandler = [completionHandlers objectForKey:uuid]; if (completionHandler) { - NSLog(@"Calling completion handler on: %@", uuid); completionHandler(); [completionHandlers removeObjectForKey:uuid]; }