From 37a00a26cfa7c41722e88bc58c218f95090b26d5 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 3 Nov 2019 12:53:02 +0100 Subject: ±debug printing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/flags.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/flags.go') diff --git a/src/flags.go b/src/flags.go index 3a3af88..aae5004 100644 --- a/src/flags.go +++ b/src/flags.go @@ -146,12 +146,15 @@ func registerFlags() { HideChar: parseIntList(hideChar), } + log.Printf("%s Hiding: %v", cyan("[i]"), hide) + show = Show{ ShowCode: parseIntList(showCode), ShowLine: parseIntList(showLine), ShowWord: parseIntList(showWord), ShowChar: parseIntList(showChar), } + log.Printf("%s Showing: %v", cyan("[i]"), show) log.Printf("%s Done reading flags", boldGreen("[+]")) } @@ -181,8 +184,6 @@ func parseIntList(inputStringList string) []int { } } - log.Println(intList) - // return the intList return intList } -- cgit 1.4.1