Index: bunco.py
==================================================================
--- bunco.py
+++ bunco.py
@@ -360,13 +360,15 @@
                     table.tick()
                     self.increment_tick()
         
         # Settle ties at each table by doing a roll-off as many times as needed
         for table in self.tables:
+            log('all', f"{table}: Team 1 {table.team1_score} pts, Team 2 {table.team2_score} pts")
             while table.team1_score == table.team2_score:
                 log('all', f"{table} having a roll-off to resolve a tie")
                 table.roll_off()
+                log('all', f"{table}: Team 1 {table.team1_score} pts, Team 2 {table.team2_score} pts")
     
 log_db = sqlite3.connect("bunco.sqlite")
 log_dbc = log_db.cursor()
 
 def run_query(*args):