Skip to content

Commit 4751ddf

Browse files
committed
remove 2 chars of "XXX" since it already shows the 2 chars
1 parent abd70d5 commit 4751ddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/env/env.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func Load() {
101101
ENV.BLOCKED_ENDPOINTS = []string{}
102102
} else {
103103
for _, token := range apiTokens {
104-
log.Debug("Found Token: " + token[:2] + strings.Repeat("X", len(token)))
104+
log.Debug("Found Token: " + token[:2] + strings.Repeat("X", len(token) - 2))
105105
}
106106

107107
log.Debug("Registered " + strconv.Itoa(len(apiTokens)) + " Tokens")

0 commit comments

Comments
 (0)