Skip to content

Commit

Permalink
Update StudentMergeService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
eckermania authored Oct 22, 2024
1 parent 538c9ce commit 216262e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public StudentMergeService(RestUtils restUtils){

public List<StudentMerge> getMergedStudentsForDateRange(String createDateStart, String createDateEnd){
UUID correlationID = UUID.randomUUID();
log.info("Fetching student merge records for correlation ID: {}", correlationID);
log.info("Fetching student merge records created between {} and {} with correlation ID: {}", createDateStart, createDateEnd, correlationID);
return restUtils.getMergedStudentsForDateRange(correlationID, createDateStart, createDateEnd);
}
}

0 comments on commit 216262e

Please sign in to comment.