brianmolinaspring commented on issue #5761:
URL: https://github.com/apache/camel-quarkus/issues/5761#issuecomment-1949451946

   @jamesnetherton  I managed to hide the message using a quarkus filter
   
   package com.ms.bss.utilities;
   
   import java.util.logging.Filter;
   import java.util.logging.LogRecord;
   
   import io.quarkus.logging.LoggingFilter;
   import org.eclipse.microprofile.config.inject.ConfigProperty;
   
   @LoggingFilter(name = "my-filter")
   public final class TestFilter implements Filter {
   
       private final String part;
   
       public TestFilter(@ConfigProperty(name = "my-filter.part") String part) {
           this.part = part;
       }
   
       @Override
       public boolean isLoggable(LogRecord record) {
           return !record.getMessage().contains(part);
       }
   }
   
   in properties:
   
   my-filter.part=Scope.close
   quarkus.log.console.filter=my-filter
   
   
   As mentioned in the other buses reported, the warning is harmless, is it 
okay to hide the warning while adjusting a new version?
   
   I plan to take this version of Quarkus 3.2.10.Final to production, is that 
okay with you?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to