diff options
-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 } |