Skip to content

Commit 8f3240c

Browse files
committed
Formatting
1 parent 6cf3e01 commit 8f3240c

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

bin/copyDb.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,13 @@ async function copyDbToRocks(sourceRootStore, sourceDatabase: string, targetPath
440440
outstandingWrites = 0;
441441
}
442442
} catch (error) {
443-
console.error('Error migrating record', typeof key === 'symbol' ? 'symbol' : key, 'from', sourceDatabase, error);
443+
console.error(
444+
'Error migrating record',
445+
typeof key === 'symbol' ? 'symbol' : key,
446+
'from',
447+
sourceDatabase,
448+
error
449+
);
444450
}
445451
}
446452
} else {
@@ -456,7 +462,13 @@ async function copyDbToRocks(sourceRootStore, sourceDatabase: string, targetPath
456462
outstandingWrites = 0;
457463
}
458464
} catch (error) {
459-
console.error('Error migrating index record', typeof key === 'symbol' ? 'symbol' : key, 'from', sourceDatabase, error);
465+
console.error(
466+
'Error migrating index record',
467+
typeof key === 'symbol' ? 'symbol' : key,
468+
'from',
469+
sourceDatabase,
470+
error
471+
);
460472
}
461473
}
462474
}

0 commit comments

Comments
 (0)