liangzimixin 0.3.49 → 0.3.50
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/dist/index.cjs +1 -1
- package/dist/setup-entry.cjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -17860,7 +17860,7 @@ async function uploadMedia(params) {
|
|
|
17860
17860
|
const { uploadId } = initResult;
|
|
17861
17861
|
let { parts } = initResult;
|
|
17862
17862
|
const chunkSize = initResult.chunkSize;
|
|
17863
|
-
log2.info("upload:init ok", { uploadId, totalChunks: initResult.totalChunks, chunkSize });
|
|
17863
|
+
log2.info("upload:init ok", { uploadId, totalChunks: initResult.totalChunks, chunkSize, initResult });
|
|
17864
17864
|
const chunks = splitBuffer(buffer, chunkSize);
|
|
17865
17865
|
const completedParts = [];
|
|
17866
17866
|
for (let i = 0; i < chunks.length; i++) {
|
package/dist/setup-entry.cjs
CHANGED
|
@@ -3952,7 +3952,7 @@ async function uploadMedia(params) {
|
|
|
3952
3952
|
const { uploadId } = initResult;
|
|
3953
3953
|
let { parts } = initResult;
|
|
3954
3954
|
const chunkSize = initResult.chunkSize;
|
|
3955
|
-
log2.info("upload:init ok", { uploadId, totalChunks: initResult.totalChunks, chunkSize });
|
|
3955
|
+
log2.info("upload:init ok", { uploadId, totalChunks: initResult.totalChunks, chunkSize, initResult });
|
|
3956
3956
|
const chunks = splitBuffer(buffer, chunkSize);
|
|
3957
3957
|
const completedParts = [];
|
|
3958
3958
|
for (let i = 0; i < chunks.length; i++) {
|