From ba5e110682437384f1a8a42e894a8626ad71c05a Mon Sep 17 00:00:00 2001
From: gerlofvanek <gerlof@particl.io>
Date: Tue, 14 Jan 2025 22:17:19 +0100
Subject: [PATCH] Remove debug

---
 basicswap/ui/page_quickswaps.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/basicswap/ui/page_quickswaps.py b/basicswap/ui/page_quickswaps.py
index e61fec7..a28bee3 100644
--- a/basicswap/ui/page_quickswaps.py
+++ b/basicswap/ui/page_quickswaps.py
@@ -6,13 +6,11 @@ def page_quickswaps(handler, url_split, post_string):
     messages = []
     err_messages = []
     form_data = handler.checkForm(post_string, "quickswaps", messages)
-
+    
     if form_data:
         try:
             pass
         except Exception as e:
-            if swap_client.debug:
-                swap_client.log.error(traceback.format_exc())
             err_messages.append(str(e))
 
     template = handler.server.env.get_template("quickswaps.html")