From b2f677c31dcb3907f0f74b18423c1d7d2ba65ba9 Mon Sep 17 00:00:00 2001
From: mancini <mancini@astron.nl>
Date: Thu, 10 Nov 2022 16:31:34 +0100
Subject: [PATCH] Fix logging line

---
 atdb/prune.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/atdb/prune.py b/atdb/prune.py
index f8e235f..547de7d 100644
--- a/atdb/prune.py
+++ b/atdb/prune.py
@@ -53,7 +53,7 @@ def remove_surl_locations(surls: List[str], dry_run=False) -> None:
         if not dry_run:
 
             logger.debug("removing surl %s", surl)
-            logger.debug("file stats are:", context.stat(surl))
+            logger.debug("file stats are: %s", context.stat(surl))
             context.release(surl)
         else:
             logger.info("[dry-run] removing surl %s", surl)
-- 
GitLab