From c46fb389303382850ba908b0fbb485fcb7e71aa0 Mon Sep 17 00:00:00 2001
From: owenw2 <owenw2@sp25-cs425-0601.cs.illinois.edu>
Date: Thu, 24 Apr 2025 17:47:07 -0500
Subject: [PATCH] removed more prints

---
 mp1/node.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mp1/node.py b/mp1/node.py
index e600b14..a727d14 100644
--- a/mp1/node.py
+++ b/mp1/node.py
@@ -59,14 +59,14 @@ def handle_failure(node_name):
     with mutex_lock:
         if node_name in connections:
             del connections[node_name]
-            print(connections)
+            # print(connections)
              
     while not pq.empty():
         print(pq.get())
 
     NUM_RELATIONS -= 1
 
-    print(f"Handling failure of {node_name}. System should continue operating.")
+    # print(f"Handling failure of {node_name}. System should continue operating.")
 
 
 def create_node(node: Tuple[str, str, int], nodes: List[Tuple[str, str, int]]):  
-- 
GitLab