1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-15 00:15:00 +02:00

Add startup logging for skipped auth routes

This commit is contained in:
Nick Meves
2020-09-26 12:38:01 -07:00
parent fa4ba5e7ea
commit 89a8ac8c1f
2 changed files with 4 additions and 2 deletions

View File

@ -293,6 +293,7 @@ func buildRoutesAllowlist(opts *options.Options) ([]*allowedRoute, error) {
if err != nil {
return nil, err
}
logger.Printf("Skipping auth - Method: ALL | Path: %s", path)
routes = append(routes, &allowedRoute{
method: "",
pathRegex: compiledRegex,
@ -318,6 +319,7 @@ func buildRoutesAllowlist(opts *options.Options) ([]*allowedRoute, error) {
if err != nil {
return nil, err
}
logger.Printf("Skipping auth - Method: %s | Path: %s", method, path)
routes = append(routes, &allowedRoute{
method: method,
pathRegex: compiledRegex,