Skip to content

Commit

Permalink
Fixed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorthiz committed Oct 13, 2024
1 parent 58ae613 commit 4ba53d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GlobalActions/UploadFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ const processSingleUploadedFile = (file: IFileProcessItem) => {

export const processUploadedFileList = (fileList: FileList, source: string) => {
const files = FileActionsWrapper.mapToProcessItems(fileList);
console.log(`[UploadFiles][${source}] - uploading files]`)
console.log(`[UploadFiles][${source}] - uploading files: [${files.map(file => file.file.name)}]`);
return Promise.all(files.map(processSingleUploadedFile));
};

0 comments on commit 4ba53d4

Please sign in to comment.