For this client request suppress payload logging.
Used when the payload contains sensitive content and the request and response content should be suppressed.
@Client
interface CustomerApi {
...
@Get("/{id}")
@SupressLogging
Customer getById(long id);
@Post
@SupressLogging
long save(Customer customer);
}