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 29e07b2 commit 167f555Copy full SHA for 167f555
utils/env/env.go
@@ -2,6 +2,7 @@ package env
2
3
import (
4
"os"
5
+ "strconv"
6
7
middlewares "github.com/codeshelldev/secured-signal-api/internals/proxy/middlewares"
8
"github.com/codeshelldev/secured-signal-api/utils"
@@ -98,6 +99,8 @@ func Load() {
98
99
100
ENV.BLOCKED_ENDPOINTS = []string{}
101
} else {
102
+ log.Debug("Registered " + strconv.Itoa(len(apiTokens)) + " Tokens")
103
+
104
ENV.API_TOKENS = apiTokens
105
}
106
0 commit comments