Annotation Type SupressLogging


@Retention(SOURCE) @Target({TYPE,METHOD}) public @interface SupressLogging
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);
 }