como registrar a chamada do Spring 5 WebClient

Estou tentando registrar uma solicitação usando o WebClient do Spring 5. Você tem alguma idéia de como eu poderia conseguir isso?

(Estou usando o Spring 5 e o Spring boot 2)

O código fica assim no momento:

try {
    return webClient.get().uri(url, urlParams).exchange().flatMap(response -> response.bodyToMono(Test.class))
            .map(test -> xxx.set(test));
} catch (RestClientException e) {
    log.error("Cannot get counter from opus", e);
    throw e;
}

questionAnswers(3)

yourAnswerToTheQuestion