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

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


The following commit(s) were added to refs/heads/main by this push:
     new 570a3dc71c NIFI-13892 Suppressed JVM Logging for Lucene Vectorization
570a3dc71c is described below

commit 570a3dc71c7f8fa9ab5c27be6169050221e8c18a
Author: exceptionfactory <[email protected]>
AuthorDate: Thu Oct 17 12:22:18 2024 -0500

    NIFI-13892 Suppressed JVM Logging for Lucene Vectorization
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #9412.
---
 .../nifi-resources/src/main/resources/conf/logback.xml               | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml
 
b/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml
index baef9d3881..4b8cc44246 100644
--- 
a/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml
+++ 
b/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/logback.xml
@@ -226,6 +226,11 @@
     <!-- Suppress non-error messages from JetBrains Xodus FileDataWriter 
related to FileChannel -->
     <logger name="jetbrains.exodus.io.FileDataWriter" level="WARN" />
 
+    <!-- Suppress warnings from Lucene Vectorization Provider related to JDK 
incubator features -->
+    <logger 
name="org.apache.lucene.internal.vectorization.VectorizationProvider" 
level="ERROR" />
+    <!-- Suppress information from Lucene Memory Segment Provider related to 
native access configuration -->
+    <logger name="org.apache.lucene.store.MemorySegmentIndexInputProvider" 
level="WARN" />
+
     <!-- These log messages would normally go to the USER_FILE log, but they 
belong in the APP_FILE -->
     <logger name="org.apache.nifi.web.security.requests" level="INFO" 
additivity="false">
         <appender-ref ref="APP_FILE"/>

Reply via email to