Skip to content

Commit

Permalink
Added logs for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashok-ksharma committed Sep 2, 2024
1 parent d14bfec commit 9a5d4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,8 @@ private void postAbisIdentification(InternalRegistrationStatusDto registrationSt
registrationType, registrationStatusDto.getIteration(), registrationStatusDto.getWorkflowInstanceId(), ProviderStageName.BIO_DEDUPE);
ArrayList<String> matchedRegIdsList = new ArrayList<String>(matchedRegIds);
// TODO : temporary fix. Need to analyze more.
regProcLogger.info(LoggerFileConstant.SESSIONID.toString(), LoggerFileConstant.REGISTRATIONID.toString(),
registrationStatusDto.getRegistrationId(), "Filtered matchedRegIdsList : " + matchedRegIdsList);
if (matchedRegIds != null && !matchedRegIds.isEmpty()
&& matchedRegIds.contains(registrationStatusDto.getRegistrationId())) {
matchedRegIds.remove(registrationStatusDto.getRegistrationId());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ public Set<String> getUniqueRegIds(String registrationId, String registrationTyp
for (AbisResponseDetDto abisResponseDetDto : abisResponseDetDtoList) {
machedRefIds.add(abisResponseDetDto.getMatchedBioRefId());
}
regProcLogger.info(LoggerFileConstant.SESSIONID.toString(), LoggerFileConstant.REGISTRATIONID.toString(),
registrationId, "machedRefIds : " + machedRefIds);
if (!CollectionUtils.isEmpty(machedRefIds)) {
List<String> matchedRegIds = packetInfoDao.getAbisRefRegIdsByMatchedRefIds(machedRefIds);
if (!CollectionUtils.isEmpty(matchedRegIds)) {
Expand Down

0 comments on commit 9a5d4ce

Please sign in to comment.