NIFI-3547 Changing level from WARN to INFO for Wait Processor's expected behavior

This closes #1556.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
josephxsxn 2017-03-02 13:51:28 -05:00 committed by Aldrin Piri
parent d689ac561e
commit ac5a7960e8
No known key found for this signature in database
GPG Key ID: 531AEBAA4CFE5D00
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ public class Wait extends AbstractProcessor {
.asTimePeriod(TimeUnit.MILLISECONDS);
long now = System.currentTimeMillis();
if (now > (lWaitStartTimestamp + expirationDuration)) {
logger.warn("FlowFile {} expired after {}ms", new Object[] {flowFile, (now - lWaitStartTimestamp)});
logger.info("FlowFile {} expired after {}ms", new Object[] {flowFile, (now - lWaitStartTimestamp)});
flowFile = copySignalAttributes(session, flowFile, signal, replaceOriginalAttributes);
session.transfer(flowFile, REL_EXPIRED);
return;