Skip to content

Commit

Permalink
DSC-1960 reduce noice in log file
Browse files Browse the repository at this point in the history
  • Loading branch information
abollini committed Oct 11, 2024
1 parent f0a6dce commit 9255c0b
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private void readField(InProgressSubmission obj, SubmissionStepConfig config, Da
}
} else if (StringUtils.equalsIgnoreCase(input.getInputType(), "group") ||
StringUtils.equalsIgnoreCase(input.getInputType(), "inline-group")) {
log.info("Called child form:" + config.getId() + "-" +
log.debug("Called child form:" + config.getId() + "-" +
Utils.standardize(input.getSchema(), input.getElement(), input.getQualifier(), "-"));
DCInputSet inputConfigChild = inputReader.getInputsByFormName(config.getId() + "-" + Utils
.standardize(input.getSchema(), input.getElement(), input.getQualifier(), "-"));
Expand Down Expand Up @@ -191,10 +191,6 @@ public void doPatchProcessing(Context context, HttpServletRequest currentRequest
}
}

private boolean isFromVocabulary(DCInput dcInput) {
return StringUtils.isNotBlank(dcInput.getVocabulary());
}

private List<String> getInputFieldsName(DCInputSet inputConfig, String configId) throws DCInputsReaderException {
List<String> fieldsName = new ArrayList<String>();
for (DCInput[] row : inputConfig.getFields()) {
Expand All @@ -205,7 +201,7 @@ private List<String> getInputFieldsName(DCInputSet inputConfig, String configId)
}
} else if (StringUtils.equalsIgnoreCase(input.getInputType(), "group") ||
StringUtils.equalsIgnoreCase(input.getInputType(), "inline-group")) {
log.info("Called child form:" + configId + "-" +
log.debug("Called child form:" + configId + "-" +
Utils.standardize(input.getSchema(), input.getElement(), input.getQualifier(), "-"));
DCInputSet inputConfigChild = inputReader.getInputsByFormName(configId + "-" + Utils
.standardize(input.getSchema(), input.getElement(), input.getQualifier(), "-"));
Expand Down

0 comments on commit 9255c0b

Please sign in to comment.