From 33981f1b356332063165d9d307f7477e251007f0 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 27 Dec 2021 03:26:59 +0100 Subject: [PATCH] Output cleanup --- uplink/uplink.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uplink/uplink.py b/uplink/uplink.py index 245179d..7b626d8 100644 --- a/uplink/uplink.py +++ b/uplink/uplink.py @@ -70,7 +70,7 @@ class Uplink(Daemon): '\")' # TODO: Replace all lines like this with generic Python logging - print(str(sql)) + # print(str(sql)) with con.cursor() as cur: cur.execute(sql) con.commit() @@ -99,7 +99,7 @@ class Uplink(Daemon): socket.gethostname() + '\")' # TODO: Replace all lines like this with generic Python logging - print(str(sql)) + # print(str(sql)) with con.cursor() as cur: cur.execute(sql) con.commit()