From f0ccac03f0907cd4b5adda8996728d9044e056b0 Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Tue, 18 Mar 2025 15:58:41 -0400 Subject: [PATCH] Replace missing placeholder in debug statement in scaffold_atlas.py --- .evergreen/scaffold_atlas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):