diff --git a/.evergreen/scaffold_atlas.py b/.evergreen/scaffold_atlas.py index 645ec44..8a33da7 100644 --- a/.evergreen/scaffold_atlas.py +++ b/.evergreen/scaffold_atlas.py @@ -44,7 +44,7 @@ def upload_data(db: Database, filename: Path) -> None: ) collections = [c["name"] for c in db.list_collections()] if collection_name in collections: - logger.debug("Clearing existing collection", collection_name) + logger.debug("Clearing existing collection %s", collection_name) db[collection_name].delete_many({}) if not isinstance(loaded_collection, list):