From 93fe72d2eeecbb23b4185695b829529e9a3a393f Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Thu, 3 Oct 2024 12:37:47 -0500 Subject: [PATCH] tap_schema.py: use formatting string in log message Co-authored-by: stvoutsin --- python/felis/tap_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/felis/tap_schema.py b/python/felis/tap_schema.py index 66d5a29c..c70a482c 100644 --- a/python/felis/tap_schema.py +++ b/python/felis/tap_schema.py @@ -280,7 +280,7 @@ def _create_table_map(self) -> None: ) for table_name in TableManager.get_table_names_std() } - logger.debug("Created TAP_SCHEMA table map:", self._table_map) + logger.debug(f"Created TAP_SCHEMA table map: {self._table_map}") def _check_tables(self) -> None: for table_name in TableManager.get_table_names_std():