NIFI-6948 - Removing some debug logging.

This closes #3935.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
Nathan Gough 2019-12-13 12:31:43 -05:00 committed by Andy LoPresto
parent 2277d08c8e
commit 42cb6e8489
No known key found for this signature in database
GPG Key ID: 6EC293152D90B61D
2 changed files with 0 additions and 2 deletions

View File

@ -65,7 +65,6 @@ public class ExpressionLanguageAgnosticParameterParser extends AbstractParameter
}
}
logger.debug("For input {} found {} Parameter references: {}", input, references.size(), references);
return new StandardParameterTokenList(input, references);
}
}

View File

@ -103,7 +103,6 @@ public class ExpressionLanguageAwareParameterParser extends AbstractParameterPar
lastChar = c;
}
logger.debug("For input {} found {} Parameter references: {}", input, tokens.size(), tokens);
return new StandardParameterTokenList(input, tokens);
}