Skip to content

Commit 468468c

Browse files
committed
debugging RECIPIENTS
1 parent 5791b3d commit 468468c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

utils/config/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ func InitEnv() {
8282
ENV.VARIABLES["NUMBER"] = config.String("number")
8383
ENV.VARIABLES["RECIPIENTS"] = config.Strings("recipients")
8484

85+
log.Debug("Recipients: ", ENV.VARIABLES["RECIPIENTS"].([]string)[0])
86+
8587
ENV.BLOCKED_ENDPOINTS = config.Strings("blockedendpoints")
8688
}
8789

utils/safestrings/safestrings.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package safestrings
22

33
import (
4-
"fmt"
54
"regexp"
65
"strconv"
76
"strings"
@@ -44,8 +43,6 @@ func ToType(str string) any {
4443
}
4544
}
4645

47-
fmt.Print(str)
48-
4946
return str
5047
}
5148

0 commit comments

Comments
 (0)