From c35546749b51328df82a63119fcc7725d14e977d Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Fri, 6 Nov 2020 16:16:26 -0400 Subject: [PATCH] remove excessive log --- app/store/sagas/users.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/store/sagas/users.ts b/app/store/sagas/users.ts index 0e5e0e79..a811e1f2 100644 --- a/app/store/sagas/users.ts +++ b/app/store/sagas/users.ts @@ -18,7 +18,6 @@ function* users() { const allPublicKeys = Selectors.getAllPublicKeys(state) if (isReady) { - Logger.log(`Will asign user sockets to all known public keys if needed`) assignSocketsToPublicKeysIfNeeded(allPublicKeys) } @@ -53,7 +52,6 @@ const assignSocketsToPublicKeysIfNeeded = (publicKeys: string[]) => { const binarySocketName = 'binary' + publicKey if (sockets[normalSocketName] && sockets[binarySocketName]) { - Logger.log(`Socket for public key already exists, skipping: ${publicKey}`) continue }