diff --git a/modal/cli/_download.py b/modal/cli/_download.py index c8a4d5d6e..56cca4657 100644 --- a/modal/cli/_download.py +++ b/modal/cli/_download.py @@ -82,7 +82,7 @@ async def consumer(): async for chunk in volume.read_file(entry.path): b += fp.write(chunk) progress_cb(task_id=progress_task_id, advance=len(chunk)) - logger.debug(f"Wrote {b} bytes to {output_path}", file=sys.stderr) + logger.debug(f"Wrote {b} bytes to {output_path}") progress_cb(task_id=progress_task_id, complete=True) elif entry.type == FileEntryType.DIRECTORY: output_path.mkdir(parents=True, exist_ok=True)