Remove warn log when no account record is fetched

This commit is contained in:
Fedor Indutny 2022-02-28 18:43:45 -08:00 committed by GitHub
parent 524f0cfaea
commit 1a751c07fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -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)}`