Skip to content

Commit

Permalink
remove debug context logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Dec 17, 2024
1 parent 7ad0033 commit e003bce
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,12 +218,10 @@ private boolean checkOptionalQueryParams (Context ctx) {
}

private boolean checkMandatoryJson (Context ctx) {
ctx.log ("Mandatory JSON: " + mandatoryJson);
boolean validParams = true;
for (Map.Entry<String,JsonSchema> entry : mandatoryJson.entrySet()) {
String value = ctx.getString(entry.getKey());
ProcessingReport report;
ctx.log ("Checking " + entry.getKey() + " value=" + value);
if (value != null) {
try {
JsonSchema schema = entry.getValue();
Expand Down

0 comments on commit e003bce

Please sign in to comment.