diff --git a/src/libs/Network.js b/src/libs/Network.js index 0f871084a9dc..76d110d9ab7e 100644 --- a/src/libs/Network.js +++ b/src/libs/Network.js @@ -46,8 +46,6 @@ ActiveClientManager.isReady().then(() => { Onyx.connect({ key: ONYXKEYS.NETWORK_REQUEST_QUEUE, callback: (persistedRequests) => { - console.debug('leader', ActiveClientManager.isClientTheLeader()); - // NETWORK_REQUEST_QUEUE is shared across clients, thus every client will have similiar copy of // NETWORK_REQUEST_QUEUE. It is very important to only process the queue from leader client // otherwise requests will be duplicated. @@ -63,7 +61,6 @@ ActiveClientManager.isReady().then(() => { || !persistedRequests.length) { return; } - console.debug('process', persistedRequests.length); // Queue processing expects handlers but due to we are loading the requests from Storage // we just noop them to ignore the errors.