diff --git a/internal/api/middleware/request_logging.go b/internal/api/middleware/request_logging.go index 0bef6752..8f29e1a1 100644 --- a/internal/api/middleware/request_logging.go +++ b/internal/api/middleware/request_logging.go @@ -112,5 +112,10 @@ func shouldLogRequest(path string) bool { if strings.HasPrefix(path, "/v0/management") || strings.HasPrefix(path, "/management") { return false } + + if strings.HasPrefix(path, "/api") { + return strings.HasPrefix(path, "/api/provider") + } + return true }