I want to log all the requests my application makes. The application makes several call like this:
val client: Client = org.http4s.client.blaze.SimpleHttp1Client(...)
client.fetch(Request(method = GET, uri = aUri))
Is there a way of getting the client to log to a file all the requests?
(Using v0.12.4)