Repository: nifi Updated Branches: refs/heads/master b1217f529 -> 373cf090a
NIFI-4953 - FetchHBaseRow - update log level for "not found" to DEBUG instead of ERROR Signed-off-by: Pierre Villard <[email protected]> This closes #2527. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/373cf090 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/373cf090 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/373cf090 Branch: refs/heads/master Commit: 373cf090a46e03bca49335b9df7d5de0bd94a086 Parents: b1217f5 Author: Ed <[email protected]> Authored: Fri Mar 9 12:06:34 2018 -0500 Committer: Pierre Villard <[email protected]> Committed: Mon Mar 12 20:21:40 2018 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/373cf090/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java b/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java index 8d06da9..654f7af 100644 --- a/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java +++ b/nifi-nar-bundles/nifi-hbase-bundle/nifi-hbase-processors/src/main/java/org/apache/nifi/hbase/FetchHBaseRow.java @@ -268,7 +268,7 @@ public class FetchHBaseRow extends AbstractProcessor { FlowFile handlerFlowFile = handler.getFlowFile(); if (!handler.handledRow()) { - getLogger().error("Row {} not found in {}, transferring to not found", new Object[] {rowId, tableName}); + getLogger().debug("Row {} not found in {}, transferring to not found", new Object[] {rowId, tableName}); session.transfer(handlerFlowFile, REL_NOT_FOUND); return; }
