At https://es.quarkus.io/guides/rest-client-reactive#logging-traffic it states:
REST Client Reactive utilizes a default ClientLogger implementation. You can modify this by supplying a custom ClientLogger instance via CDI or when programmatically creating your client.
How can this be achieved through CDI?
I aim to create a ClientLogger that omits logging headers, as bearer tokens are transmitted through them.
From Quarkus 3.9 onwards, simply annotate your
ClientLoggerwith either@Singletonor@ApplicationScoped.Prior to Quarkus 3.9, additionally include
@Unremovable.For more information, refer to Make ClientLogger beans unremovable.