From 8250d3a7ddc5a44eeb01632a97da2d15011b514f Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Thu, 9 Oct 2025 11:40:14 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Log=20files=20added=20to?= =?UTF-8?q?=20archive=20in=20debug=20mode=20(#91)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fastapi_cloud_cli/commands/deploy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fastapi_cloud_cli/commands/deploy.py b/src/fastapi_cloud_cli/commands/deploy.py index 244e8678..cf93a628 100644 --- a/src/fastapi_cloud_cli/commands/deploy.py +++ b/src/fastapi_cloud_cli/commands/deploy.py @@ -67,6 +67,7 @@ def archive(path: Path) -> Path: if filename.is_dir(): continue + logger.debug("Adding %s to archive", filename.relative_to(path)) tar.add(filename, arcname=filename.relative_to(path)) file_count += 1