querysub 0.421.0 → 0.422.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -147,7 +147,8 @@ export async function moveLogsToPublic(config: {
|
|
|
147
147
|
}));
|
|
148
148
|
if (buffers.length === 0) continue;
|
|
149
149
|
|
|
150
|
-
|
|
150
|
+
let totalSize = buffers.reduce((acc, x) => acc + x.buffer.length, 0);
|
|
151
|
+
console.log(magenta(`Merging and moving ${group.length} log files (${formatNumber(totalSize)}B) backblaze (${blue(config.loggerName)})`));
|
|
151
152
|
|
|
152
153
|
let allBuffers: Buffer[][] = [];
|
|
153
154
|
|