diff options
author | Emile <hanemile@protonmail.com> | 2019-11-03 12:53:02 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-11-03 12:53:02 +0100 |
commit | 37a00a26cfa7c41722e88bc58c218f95090b26d5 (patch) | |
tree | 751bdc6083a8a8215ce527070e19cf27d7e22d17 | |
parent | 5331e3c515fe94ee93a733a7a7552a632beab409 (diff) |
±debug printing
-rw-r--r-- | src/flags.go | 5 |
1 files changed, 3 insertions, 2 deletions
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 } |