diff --git a/src/fastapi_cloud_cli/commands/deploy.py b/src/fastapi_cloud_cli/commands/deploy.py index 244e867..cf93a62 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