I'm deploying a Java8 standard environment and I cannot change the logging level, or turn off logs for org.eclipse.jetty.*.
I have tried:
- Creating a jetty-logging.properties file in src/main/resources and configuring it via that file
Setting a JETTY_ARGS variable in my app-engine.xml file:
<env-var name="JETTY_ARGS" value="-Djava.util.logging.config.file=WEB-INF/logging.properties" />Just using the java.util.logging
logging.propertiesfile in google app engine and setting:org.eclipse.jetty.LEVEL= WARN
I'm not too sure how to get rid of logs like the following in my GAE logging:
org.eclipse.jetty.client.http.HttpSenderOverHTTP sendContent: Generated content (0 bytes) - DONE/HttpGenerator@23c0fcd1{s=END} (HttpSenderOverHTTP.java:83) What is the correct way to do this?