Skip to content

Commit 4ff092c

Browse files
authored
Remove debug messages (#35)
* Sync'ed master & dev * Removed debugging messages
1 parent 923e379 commit 4ff092c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

util.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ func addRedact(s string) {
155155

156156
func escSpCar(s string) string {
157157
// Replace special characters that cause issues when exec'ing in Bash
158-
fmt.Printf("Before escaping string - %s\n", s)
159158

160159
// Replace $ with \$
161160
s = strings.ReplaceAll(s, "\\", "\\\\")
@@ -164,7 +163,6 @@ func escSpCar(s string) string {
164163
// Replace $ with \$
165164
s = strings.ReplaceAll(s, "`", "\\`")
166165

167-
fmt.Printf("After escaping string - %s\n", s)
168166
return s
169167
}
170168

0 commit comments

Comments
 (0)