gnarroway

Results 15 comments of gnarroway

@ohpauleez I did try a basic [json layout](https://logging.apache.org/log4j/2.x/manual/layouts.html) earlier with log4j2, and note that the main log being written is json (with attributes like the level, timestamp etc), the part...

Using wrapper macros as discussed [on slack](https://clojurians-log.clojureverse.org/pedestal/2020-06-20) is workable but the line numbers are just `nil` from my test. @ddeaguiar do you mind releasing https://github.com/pedestal/pedestal/commit/fcfdb6c753e4172e9fb81ebaed461adb007ff8ab#diff-2c31b458459094a11f951ea2deb6c7ca69dfb25bfa54ba5df87d1887c94ddbd0 since it missed 0.5.8? This...

@TwiceII with the amount of deprecated methods used in monger, any shift to a new driver would effectively be an entirely new library, so I went ahead and created that...

Thanks for raising this. Given this is Clojure, it is pretty easy to wrap your requests to allow arbitrary retry logic on status codes / backoffs etc. Maybe the first...

Makes sense. Nice explanation. Let me review the PR.

Thanks for raising this. Happy to accept a PR for it.

Thanks for raising this. I’ve had a look at the repos and I think if there is sufficient demand then a community supported hato version will be fine and I...

I will take a look. Thanks for your interest!

@thenonameguy The encode/decode already uses a multi method that dispatches on content type. Does providing your own implementation there work for you? ```clojure (defmethod hm/coerce-form-params :application/json [req] "{\"dummy\": 2}") (hm/coerce-form-params...

Okay @thenonameguy , my original interpretation was simply that you wanted to replace the Cheshire optional dependency with something you already depended on. Given hato is middleware based, it is...