Created
July 14, 2019 16:29
-
-
Save kinisoftware/9245dd5592d3117dbe03c4e065685124 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class LogResponseInterceptor : ResponseInterceptor { | |
| override fun process(input: HandlerInput, response: Optional<Response>) { | |
| response.ifPresent { println("Response: ${JacksonSerializer().serialize(it)}") } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment