Skip to content

Commit

Permalink
CIV-14614 : Add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hmcts-version1-pablo committed Jul 19, 2024
1 parent ade9bb6 commit 4060f1c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,14 @@ private DashboardClaimInfo translateCaseDataToDashboardClaimInfo(CaseDetails cas
if (caseData.getRespondToAdmittedClaimOwingAmountPounds() != null) {
item.setRespondToAdmittedClaimOwingAmountPounds(caseData.getRespondToAdmittedClaimOwingAmountPounds());
}
log.info("-----------HAS APPLICANT1ACCEPTEDCCJ {} -------------",caseData.hasApplicant1AcceptedCcj());
log.info("-----------getApplicant1ResponseDate {} -------------", caseData.getApplicant1ResponseDate());
if (caseData.hasApplicant1AcceptedCcj()) {
item.setCcjRequestedDate(caseData.getApplicant1ResponseDate());
}

log.info("-----------getActiveJudgment {} -------------",caseData.getActiveJudgment());

if (caseData.getActiveJudgment() != null) {
item.setCcjRequestedDate(caseData.getActiveJudgment().getCreatedTimestamp());
}
Expand Down

0 comments on commit 4060f1c

Please sign in to comment.