From a4d483da338eb674cb2a6c2a345fb85e1dddee6c Mon Sep 17 00:00:00 2001
From: atlurie <atlurie@uab.edu>
Date: Mon, 18 Apr 2022 22:53:41 -0500
Subject: [PATCH] Remove print stmts for debug

---
 account_manager.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/account_manager.py b/account_manager.py
index 9c8c17f..98e7a3b 100755
--- a/account_manager.py
+++ b/account_manager.py
@@ -59,7 +59,6 @@ def callback(ch, method, properties, body):
     msg = json.loads(body)
     username = msg["username"]
 
-    print(msg)
     if msg["success"]:
         print(f"Account for {username} has been {msg['action']}ed.\n Updating the user state in DB")
     else:
-- 
GitLab