We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At http://pedestal.io/cookbook/index#_custom_log_format
In the code example
(def log-request "Logs all http requests with response time." {:name ::log-request :enter (fn [context] (assoc-in context [:request :start-time] (System/currentTimeMillis))) :leave (fn [context] (let [{:keys [uri start-time request-method]} (:request context) finish (System/currentTimeMillis) total (- finish start-time)] (log/info :msg "request completed" :method (clojure.string/upper-case (name request-method)) :uri uri :status (:status (:response context)) :response-time total)))})
The function associated with :leave should return context?
:leave
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At http://pedestal.io/cookbook/index#_custom_log_format
In the code example
The function associated with
:leave
should return context?The text was updated successfully, but these errors were encountered: