Compare commits

...

1 Commits

Author SHA1 Message Date
ad907576dc fix: move log message
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
2024-03-29 11:13:05 +01:00

View File

@ -40,13 +40,14 @@ MAIN:
logger.F("from", from), logger.F("from", from),
) )
if matches := wildcard.Match(url.String(), from); !matches { if matches := wildcard.Match(url.String(), from); !matches {
logger.Debug(
ctx, "proxy's from matched",
logger.F("from", from),
)
continue continue
} }
logger.Debug(
ctx, "proxy's from matched",
logger.F("from", from),
)
match = p match = p
break MAIN break MAIN
} }