You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data-loader/cli/src/main/java/com/scalar/db/dataloader/cli/command/dataimport/ConsoleImportProgressListener.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ public void onDataChunkStarted(ImportDataChunkStatus status) {
36
36
chunkLogs.put(
37
37
status.getDataChunkId(),
38
38
String.format(
39
-
"🔄 Chunk %d: Processing... %,d records so far",
39
+
"🔄 Chunk %d: Processing... %d records so far",
40
40
status.getDataChunkId(), totalRecords.get()));
41
41
}
42
42
@@ -50,7 +50,7 @@ public void onDataChunkCompleted(ImportDataChunkStatus status) {
50
50
chunkLogs.put(
51
51
status.getDataChunkId(),
52
52
String.format(
53
-
"✓ Chunk %d: %,d records imported (%.1fs), %d records imported successfully, import of %d records failed",
53
+
"✓ Chunk %d: %d records imported (%.1fs), %d records imported successfully, import of %d records failed",
54
54
status.getDataChunkId(),
55
55
status.getTotalRecords(),
56
56
elapsed / 1000.0,
@@ -70,7 +70,7 @@ public void onTransactionBatchCompleted(ImportTransactionBatchResult batchResult
70
70
chunkFailureLogs.put(
71
71
batchResult.getDataChunkId(),
72
72
String.format(
73
-
"❌ Chunk id: %d, Transaction batch id: %d failed: %,d records could not be imported",
73
+
"❌ Chunk id: %d, Transaction batch id: %d failed: %d records could not be imported",
0 commit comments