Skip to content

Commit

Permalink
Remove warn log when no account record is fetched
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny-signal committed Mar 1, 2022
1 parent 524f0cf commit 1a751c0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ts/services/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)}`
Expand Down

0 comments on commit 1a751c0

Please sign in to comment.