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 2e502e3 commit c2f02d4Copy full SHA for c2f02d4
internals/proxy/middlewares/auth.go
@@ -36,12 +36,6 @@ func getAuthType(str string) authType {
36
}
37
38
func isValidToken(tokens []string, match string) (bool) {
39
- for _, token := range tokens {
40
- log.Debug("Checking Token: " + token[:2] + strings.Repeat("X", len(token) - 2))
41
- }
42
-
43
- log.Debug("Against: " + match[:2] + strings.Repeat("X", len(match) - 2))
44
45
return slices.Contains(tokens, match)
46
47
0 commit comments