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,12 +40,13 @@ 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 {
continue
}
logger.Debug( logger.Debug(
ctx, "proxy's from matched", ctx, "proxy's from matched",
logger.F("from", from), logger.F("from", from),
) )
continue
}
match = p match = p
break MAIN break MAIN