ring-swagger

ring-swagger & compojure-api
jdt 2018-08-21T11:50:05.000100Z

This is a little weird. I have one app with :spec coercion, but I get these message when logging: `

jdt 2018-08-21T11:50:10.000100Z

2018-08-21 07:48:58,805 [main] INFO  [compojure.api.coercion.schema] - :schema coercion enabled in compojure.api
2018-08-21 07:48:59,218 [main] INFO  [compojure.api.coercion.spec] - :spec coercion enabled in compojure.api

jdt 2018-08-21T11:50:26.000100Z

the weird one being the :schema coercion message

ikitommi 2018-08-21T15:45:44.000100Z

there is a multimethod that is used to map Keyword :coercion values, e.g. :coercion :schema. The logging was added before Clojure 1.9.0 to indicate which coercion implementations are available (e.g. if spec is found in classpath). I think the logging can be removed, as 1.9.0 has shipped.

ikitommi 2018-08-21T15:46:27.000100Z

Pull Request to remove those most welcome.