Remove warn log when no account record is fetched
This commit is contained in:
@@ -1105,9 +1105,7 @@ async function processRemoteRecords(
|
|||||||
`storageService.process(${storageVersion}): ` +
|
`storageService.process(${storageVersion}): ` +
|
||||||
`attempting to merge records=${prunedStorageItems.length}`
|
`attempting to merge records=${prunedStorageItems.length}`
|
||||||
);
|
);
|
||||||
if (accountItem === undefined) {
|
if (accountItem !== undefined) {
|
||||||
log.warn(`storageService.process(${storageVersion}): no account record`);
|
|
||||||
} else {
|
|
||||||
log.info(
|
log.info(
|
||||||
`storageService.process(${storageVersion}): account ` +
|
`storageService.process(${storageVersion}): account ` +
|
||||||
`record=${redactStorageID(accountItem.storageID, storageVersion)}`
|
`record=${redactStorageID(accountItem.storageID, storageVersion)}`
|
||||||
|
Reference in New Issue
Block a user