I want to build a simple Spring Web Client who send message from stdin but the WebClient show all debug informations on stdout.
How to disable the logs generated by Webclient ?
Code of the client
WebClient webclient = WebClient.builder().baseUrl("http://localhost:8080/").build();
webClient.post().uri(uriBuilder -> uriBuilder.path("/test").queryParam("id",1).build()).retrieve().bodyToMono(Log.class).block();