Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- grep
- Windows
- Source
- IntelliJ
- Mac
- web.xml
- Eclipse
- plugin
- xargs
- GIT
- 네트워크
- tomcat
- maVen
- 줄바꿈 문자
- context
- import
- netsh
- JavaScript
- ssh
- 단축키
- Quartz
- vscode
- resource
- bash
- profile
- find
- port
- VirtualBox
- Windows 10
- lsof
Archives
- Today
- Total
develog
WebClient logging 본문
logging level debug 추가
# application.yml
logging:
level:
reactor.netty.http.client: DEBUG
wiretap 추가
HttpClient httpClient = HttpClient.create()
.wiretap("reactor.netty.http.client.HttpClient", LogLevel.DEBUG, AdvancedByteBufFormat.TEXTUAL)
clienttConnector 셋팅
WebClient.Builder = WebClient.builder()
.clientConnector(new ReactorClientHttpConnector(httpClient));
WebClient webClient = WebClient.Builder.build();
https://www.baeldung.com/spring-log-webclient-calls
Comments