Skip to content

Commit

Permalink
Uniform? print-str, similar to response logging
Browse files Browse the repository at this point in the history
  • Loading branch information
enilas committed Aug 23, 2024
1 parent 57e7d24 commit 9b17bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/triangulum/handler.clj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
(let [{:keys [uri request-method params]} request
private-request-keys (or (get-config :server :private-request-keys)
#{:password :passwordConfirmation})
param-str (binding [*print-length* -1] (pr-str (apply dissoc params private-request-keys)))]
param-str (binding [*print-length* -1] (print-str (apply dissoc params private-request-keys)))]
(log-str "Request(" (name request-method) "): \"" uri "\" " param-str)
(handler request))))

Expand Down

0 comments on commit 9b17bb5

Please sign in to comment.