We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5791b3d commit 468468cCopy full SHA for 468468c
utils/config/config.go
@@ -82,6 +82,8 @@ func InitEnv() {
82
ENV.VARIABLES["NUMBER"] = config.String("number")
83
ENV.VARIABLES["RECIPIENTS"] = config.Strings("recipients")
84
85
+ log.Debug("Recipients: ", ENV.VARIABLES["RECIPIENTS"].([]string)[0])
86
+
87
ENV.BLOCKED_ENDPOINTS = config.Strings("blockedendpoints")
88
}
89
utils/safestrings/safestrings.go
@@ -1,7 +1,6 @@
1
package safestrings
2
3
import (
4
- "fmt"
5
"regexp"
6
"strconv"
7
"strings"
@@ -44,8 +43,6 @@ func ToType(str string) any {
44
43
45
46
47
- fmt.Print(str)
48
-
49
return str
50
51
0 commit comments