Repository: nifi Updated Branches: refs/heads/master b39686784 -> 3a153d3a4
NIFI-2337 This closes #731. Turn off logging for org.apache.curator.framework.recipes.leader.LeaderSelector since it logs only a single error, and that error is a but in Curator Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/3a153d3a Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/3a153d3a Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/3a153d3a Branch: refs/heads/master Commit: 3a153d3a486bf201d2bc755f12701e9b7230d5e0 Parents: b396867 Author: Mark Payne <[email protected]> Authored: Wed Jul 27 16:30:44 2016 -0400 Committer: joewitt <[email protected]> Committed: Thu Jul 28 22:29:08 2016 -0400 ---------------------------------------------------------------------- .../nifi-resources/src/main/resources/conf/logback.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/3a153d3a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml index db2fd8b..f67a6cd 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml @@ -96,6 +96,8 @@ <logger name="org.apache.zookeeper.server.NIOServerCnxnFactory" level="ERROR" /> <logger name="org.apache.zookeeper.server.quorum" level="ERROR" /> <logger name="org.apache.zookeeper.ZooKeeper" level="ERROR" /> + + <logger name="org.apache.curator.framework.recipes.leader.LeaderSelector" level="OFF" /> <!-- Logger for managing logging statements for nifi clusters. --> <logger name="org.apache.nifi.cluster" level="INFO"/>
