From dde885cbc34415d23d3160dce23467616dc57d41 Mon Sep 17 00:00:00 2001 From: kramstrom Date: Fri, 12 Jul 2024 17:22:03 -0400 Subject: [PATCH] remove --- modal/cli/_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)