Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to log all requests for an http4s client

Tags:

scala

http4s

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)

like image 912
Paul McKenzie Avatar asked Apr 04 '18 11:04

Paul McKenzie


1 Answers

I got it working:

  • maven
  • https: 0.20.0-M6
  • slf4j-api: 1.7.26
  • slf4j-log4j12: 1.7.26

Based on the question, you have to modify your code to this:

import org.http4s.client.middleware.Logger

val client: Client = org.http4s.client.blaze.SimpleHttp1Client(...)
Logger(logBody = true, logHeaders = true)(client)
    .fetch(Request(method = GET, uri = aUri))

So you have to wrap the client with a Logger

like image 136
Robert Gabriel Avatar answered Nov 04 '22 12:11

Robert Gabriel