Skip to content

Commit

Permalink
remove logging (#2904)
Browse files Browse the repository at this point in the history
  • Loading branch information
FeliTam authored Nov 28, 2024
1 parent eb88bc3 commit b43d944
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,11 +423,9 @@ public List<String> upload(

@PostMapping(path = "/citizenHubResponse", consumes = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<CallbackResponse> citizenHubResponse(@RequestBody CallbackRequest callbackRequest) {
log.info("Citizen Hub Response for caseId: {} Checkbox: {} citizenResponse: {} documentUploadIssue: {}"
+ "isSaveAndClose: {}",
log.info("Citizen Hub Response for caseId: {} Checkbox: {} documentUploadIssue: {} isSaveAndClose: {}",
callbackRequest.getCaseDetails().getId(),
callbackRequest.getCaseDetails().getData().getCitizenResponseCheckbox(),
callbackRequest.getCaseDetails().getData().getCitizenResponse(),
callbackRequest.getCaseDetails().getData().getDocumentUploadIssue(),
callbackRequest.getCaseDetails().getData().getIsSaveAndClose()
);
Expand Down

0 comments on commit b43d944

Please sign in to comment.