Skip to content
New issue

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

Error in cookbook custom log format example #170

Open
wtfleming opened this issue Jan 19, 2023 · 0 comments
Open

Error in cookbook custom log format example #170

wtfleming opened this issue Jan 19, 2023 · 0 comments

Comments

@wtfleming
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant