From 0821886de9b255626ae5d73d88e45eeaf7c12ef3 Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Sat, 12 Feb 2022 15:20:19 +0000 Subject: [PATCH] removed debuglogging --- debug.txt | 14 -------------- i3bar_base.nim | 1 - 2 files changed, 15 deletions(-) delete mode 100644 debug.txt diff --git a/debug.txt b/debug.txt deleted file mode 100644 index 36f97f0..0000000 --- a/debug.txt +++ /dev/null @@ -1,14 +0,0 @@ -(full_text: "🌗 70%", short_text: "", color: "#dfdfdf", border: "#ffb52a")(full_text: "🌗 70%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -5 -(full_text: "🌗 65%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -4 -(full_text: "🌗 70%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -5 -(full_text: "🌗 65%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -(full_text: "🌗 65%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -(full_text: "🌗 65%", short_text: "", color: "#dfdfdf", border: "#ffb52a") -(full_text: "🌗 65%", short_text: "", color: "#dfdfdf", border: "#ffb52a") - - -5 -4 diff --git a/i3bar_base.nim b/i3bar_base.nim index b24d891..6080246 100644 --- a/i3bar_base.nim +++ b/i3bar_base.nim @@ -45,7 +45,6 @@ proc debugLog*(str: string) = proc parseInput*(): i3BarInput = let input = readLineFromStdin("") - debugLog($input) try: let jsonNode = parseJson(input) let i3input = to(jsonNode, i3BarInput)