From 2e61224d52e434498593775ae54b072f23ed46be Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sat, 9 Mar 2024 22:46:56 +0000 Subject: [PATCH] Prevent unwanted output in unit test logs Change info message into a debug message. --- gramps/plugins/db/dbapi/dbapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/db/dbapi/dbapi.py b/gramps/plugins/db/dbapi/dbapi.py index db6935d6584..0ce154ce5b9 100644 --- a/gramps/plugins/db/dbapi/dbapi.py +++ b/gramps/plugins/db/dbapi/dbapi.py @@ -1103,7 +1103,7 @@ def _create_secondary_columns(self): """ Create secondary columns. """ - LOG.info("Creating secondary columns...") + LOG.debug("Creating secondary columns...") for cls in ( Person, Family,