mirror of https://github.com/apache/nifi.git
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:
parent
d689ac561e
commit
ac5a7960e8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue