Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3000#discussion_r218844134
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/util/SFTPTransfer.java
---
@@ -281,6 +289,19 @@ public int select(final LsEntry entry) {
logger.error("Unable to get listing from " +
newFullForwardPath + "; skipping this subdirectory", e);
}
}
+
--- End diff --
And it'd just be an update of the comment to:
````java
logger.error("Unable to get listing from " + newFullForwardPath + ";
skipping", e);
````
---