You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2019/10/31 10:20:48 UTC

[nifi] branch master updated: NIFI-6828 There is an unintentional string in "conf/logback.xml"

This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/master by this push:
     new 245e055  NIFI-6828 There is an unintentional string in "conf/logback.xml"
245e055 is described below

commit 245e055d5da9699c1b7a2c248d764642b871eac3
Author: Kotaro Terada <ko...@yahoo-corp.jp>
AuthorDate: Thu Oct 31 18:29:43 2019 +0900

    NIFI-6828 There is an unintentional string in "conf/logback.xml"
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #3863.
---
 .../nifi-resources/src/main/resources/conf/logback.xml             | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

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 cc53093..3cd5718 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
@@ -164,15 +164,14 @@
     <logger name="org.apache.nifi.StdOut" level="INFO" additivity="false">
         <appender-ref ref="BOOTSTRAP_FILE" />
     </logger>
-    
+
     <!-- Everything written to NiFi's Standard Error will be logged with the logger org.apache.nifi.StdErr at ERROR level -->
     <logger name="org.apache.nifi.StdErr" level="ERROR" additivity="false">
         <appender-ref ref="BOOTSTRAP_FILE" />
     </logger>
 
-
     <root level="INFO">
-        <appender-ref ref="APP_FILE"/>MockProcessContext
+        <appender-ref ref="APP_FILE" />
     </root>
-    
+
 </configuration>