Lehel44 commented on code in PR #7027:
URL: https://github.com/apache/nifi/pull/7027#discussion_r1138661819
##########
nifi-nar-bundles/nifi-extension-utils/nifi-listed-entity/src/main/java/org/apache/nifi/processor/util/list/AbstractListProcessor.java:
##########
@@ -761,6 +763,7 @@ public void listByTrackingTimestamps(final ProcessContext
context, final Process
}
if (entityList == null || entityList.isEmpty()) {
+ getLogger().debug(String.format("There is no data to list with the
criteria minTimestampToListMillis=%d. Yielding.", minTimestampToListMillis));
Review Comment:
slf4j's api provides parameterized logging which can be used here instead of
String::format.
```suggestion
getLogger().debug("There is no data to list with the criteria
minTimestampToListMillis={}. Yielding.", minTimestampToListMillis);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]