Skip to content

Commit

Permalink
Fix #3489 : STOW - RS services : Add request's remote port info in lo…
Browse files Browse the repository at this point in the history
…gged request.
  • Loading branch information
vrindanayak committed Dec 13, 2021
1 parent 5f11377 commit 7268ece
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,12 @@ private static MediaType normalize(MediaType mediaType) {
}

private void logRequest() {
LOG.info("Process {} {} from {}@{}",
LOG.info("Process {} {} from {}@{}:{}",
request.getMethod(),
toString(),
request.getRemoteUser(),
request.getRemoteHost());
request.getRemoteHost(),
request.getRemotePort());
}

private void validateWebApp() {
Expand Down

0 comments on commit 7268ece

Please sign in to comment.