How to enable logging for sttp.client4

I want to log all outgoing requests sent via sttp.client4

I am using the quickRequest api.

I tried to enable logging of sttp by adding this line to my logback.xml:
<logger name="sttp.client4" level="DEBUG" />
That did not produce any sttp logs. Did I pick the right name?
Thanks!

Did you wrap your backend with a LoggingBackend? See the docs here: Logging — sttp 3 documentation

ah ok, no I did not. Thanks for the hint!