File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ async function main(argv = process.argv.slice(2)): Promise<void> {
8181 ) ;
8282 logStep (
8383 `initial sync finished in ${ formatDuration ( firstSync . durationMs ) } : ` +
84- `${ firstSync . result . manifestsProcessed } manifests, ` +
8584 `${ firstSync . result . objectsProcessed } objects, ` +
8685 `${ firstSync . result . eventsProcessed } events` ,
8786 ) ;
@@ -94,7 +93,6 @@ async function main(argv = process.argv.slice(2)): Promise<void> {
9493 ) ;
9594 logStep (
9695 `no-op sync finished in ${ formatDuration ( secondSync . durationMs ) } : ` +
97- `${ secondSync . result . manifestsProcessed } manifests, ` +
9896 `${ secondSync . result . objectsProcessed } objects, ` +
9997 `${ secondSync . result . eventsProcessed } events` ,
10098 ) ;
Original file line number Diff line number Diff line change @@ -41,8 +41,7 @@ export function createSyncProgressLogger(
4141 return ( progress ) => {
4242 if ( progress . phase !== "complete" && ! shouldLog ( state ) ) return ;
4343 logStep (
44- `${ label } sync ${ progress . phase } : manifests ${ progress . manifestsSeen } /${ progress . manifestsTotal } ` +
45- `processed=${ progress . manifestsProcessed } skipped=${ progress . manifestsSkipped } , ` +
44+ `${ label } sync ${ progress . phase } : ` +
4645 `objects processed=${ progress . objectsProcessed } skipped=${ progress . objectsSkipped } , ` +
4746 `events=${ progress . eventsProcessed } ` ,
4847 ) ;
You can’t perform that action at this time.
0 commit comments