Repository: nifi Updated Branches: refs/heads/master 8a751e801 -> 64de5c70e
NIFI-5479 - Supressed the AnnotationParser logs using the logback.xml. Dependency changes can be look at in future. NIFI-5479 - Updated comment. This closes #3034 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/64de5c70 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/64de5c70 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/64de5c70 Branch: refs/heads/master Commit: 64de5c70e19ae0e608a61f2f978661585140b777 Parents: 8a751e8 Author: thenatog <[email protected]> Authored: Fri Sep 7 12:39:18 2018 -0400 Committer: Matt Gilman <[email protected]> Committed: Thu Oct 11 12:11:44 2018 -0400 ---------------------------------------------------------------------- .../nifi-resources/src/main/resources/conf/logback.xml | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/64de5c70/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 6ab98ab..cf3af88 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 @@ -117,6 +117,9 @@ <!-- Suppress non-error messages due to known warning about redundant path annotation (NIFI-574) --> <logger name="org.glassfish.jersey.internal.Errors" level="ERROR"/> + <!-- Suppress non-error messages due to Jetty AnnotationParser emitting a large amount of WARNS. Issue described in NIFI-5479. --> + <logger name="org.eclipse.jetty.annotations.AnnotationParser" level="ERROR"/> + <!-- Logger for capturing user events. We do not want to propagate these log events to the root logger. These messages are only sent to the
