File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class FirestoreBatch {
3939 }
4040
4141 async commitBatches ( ) {
42- console . log ( `Committing ${ this . batchPromises . length } batches` )
42+ console . log ( `Committing ${ this . batchPromises . length } batches to ${ this . collectionName } ` )
4343 await Promise . all (
4444 this . batchPromises . map ( async ( batchPromise ) => await batchPromise . commit ( )
4545 . catch ( ( error ) => {
@@ -135,7 +135,7 @@ export class FirestoreBatch {
135135 await this . finalFlush ( 'set' )
136136
137137 const duration = ( Date . now ( ) - startTime ) / 1000
138- console . info ( `Transfer complete. Total rows processed: ${ totalRowsProcessed } . Time: ${ duration } seconds` )
138+ console . info ( `Transfer to ${ this . collectionName } complete. Total rows processed: ${ totalRowsProcessed } . Time: ${ duration } seconds` )
139139 }
140140
141141 async export ( config , query ) {
You can’t perform that action at this time.
0 commit comments