From 5710a0d18a6c66f873307316fac4503e0eb5d434 Mon Sep 17 00:00:00 2001 From: childe Date: Fri, 22 May 2020 15:30:23 +0800 Subject: [PATCH] remove debug info --- config_parser.go | 1 - 1 file changed, 1 deletion(-) diff --git a/config_parser.go b/config_parser.go index 357ebd75..b140e2a1 100644 --- a/config_parser.go +++ b/config_parser.go @@ -37,7 +37,6 @@ func removeSensitiveInfo(config map[string]interface{}) string { output := make([]string, 0, 0) for _, l := range strings.Split(string(b), "\n") { - println(l) if re.MatchString(l) { output = append(output, re.ReplaceAllString(l, "${1}xxxxxx")) continue