Skip to content
Snippets Groups Projects
Unverified Commit 7d012707 authored by Ngoc Khuat's avatar Ngoc Khuat Committed by GitHub
Browse files

Make the warn param logs to log the full API URI (#32167)

Before
WARN api.common :: Unexpected parameters at [:post "/"]: [:description :collection_id :name]

After
WARN api.common :: Unexpected parameters at [:post "/api/dashboard"]: [:description :collection_id :name]
parent 3c59a5c9
No related branches found
No related tags found
No related merge requests found
......@@ -272,15 +272,14 @@
(defn validate-param-values
"Log a warning if the request body contains any parameters not included in `expected-params` (which is presumably
populated by the defendpoint schema)"
[{route :compojure/route body :body} expected-params]
[{method :request-method uri :uri body :body} expected-params]
(when (and (not config/is-prod?)
(map? body))
(let [extraneous-params (set/difference (set (keys body))
(set expected-params))]
(when (seq extraneous-params)
(log/warnf "Unexpected parameters at %s: %s\nPlease add them to the schema or remove them from the API client"
route (vec extraneous-params))))))
[method uri] (vec extraneous-params))))))
(defn method-symbol->keyword
"Convert Compojure-style HTTP method symbols (PUT, POST, etc.) to the keywords used internally by
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment