Skip to content

Instantly share code, notes, and snippets.

@vrnsky
Created January 18, 2021 04:43
Show Gist options
  • Save vrnsky/01927e4480547a8ad9fba47fa1947003 to your computer and use it in GitHub Desktop.
Save vrnsky/01927e4480547a8ad9fba47fa1947003 to your computer and use it in GitHub Desktop.
private static void logRequestBody(ContentCachingRequestWrapper request, String prefix) {
byte[] content = request.getContentAsByteArray();
if (content.length > 0) {
logContent(content, request.getContentType(), request.getCharacterEncoding(), prefix);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment