From 1a751c07fca89b840f8d23c76017a4a9d8435cd4 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Mon, 28 Feb 2022 18:43:45 -0800 Subject: [PATCH] Remove warn log when no account record is fetched --- ts/services/storage.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ts/services/storage.ts b/ts/services/storage.ts index ceb91b213..aa5b1a60a 100644 --- a/ts/services/storage.ts +++ b/ts/services/storage.ts @@ -1105,9 +1105,7 @@ async function processRemoteRecords( `storageService.process(${storageVersion}): ` + `attempting to merge records=${prunedStorageItems.length}` ); - if (accountItem === undefined) { - log.warn(`storageService.process(${storageVersion}): no account record`); - } else { + if (accountItem !== undefined) { log.info( `storageService.process(${storageVersion}): account ` + `record=${redactStorageID(accountItem.storageID, storageVersion)}`