aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pysite/database.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pysite/database.py b/pysite/database.py
index 589b77d1..f031e2a8 100644
--- a/pysite/database.py
+++ b/pysite/database.py
@@ -82,6 +82,7 @@ class RethinkDB:
with self.get_connection() as conn:
all_tables = rethinkdb.db(self.database).table_list().run(conn)
+ self.log.debug(f"Call to table_list returned the following list of tables: {all_tables}")
if table_name in all_tables:
self.log.debug(f"Table found: '{table_name}' ({len(all_tables)} tables in total)")