aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uploader/files/views.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/uploader/files/views.py b/uploader/files/views.py
index ddf5350..cebd325 100644
--- a/uploader/files/views.py
+++ b/uploader/files/views.py
@@ -56,6 +56,7 @@ def __merge_chunks__(targetfile: Path, chunkpaths: tuple[Path, ...]) -> Path:
"""Merge the chunks into a single file."""
with open(targetfile, "ab") as _target:
for chunkfile in chunkpaths:
+ app.logger.error("Merging chunk: %s", chunkfile)
with open(chunkfile, "rb") as _chunkdata:
_target.write(_chunkdata.read())