fix: move log message
Cadoles/bouncer/pipeline/head This commit looks good Details

This commit is contained in:
wpetit 2024-03-29 11:13:05 +01:00
parent 3a894972f1
commit ad907576dc
1 changed files with 5 additions and 4 deletions

View File

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