File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class FirestoreBatch {
39
39
}
40
40
41
41
async commitBatches ( ) {
42
- console . log ( `Committing ${ this . batchPromises . length } batches` )
42
+ console . log ( `Committing ${ this . batchPromises . length } batches to ${ this . collectionName } ` )
43
43
await Promise . all (
44
44
this . batchPromises . map ( async ( batchPromise ) => await batchPromise . commit ( )
45
45
. catch ( ( error ) => {
@@ -135,7 +135,7 @@ export class FirestoreBatch {
135
135
await this . finalFlush ( 'set' )
136
136
137
137
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` )
139
139
}
140
140
141
141
async export ( config , query ) {
You can’t perform that action at this time.
0 commit comments