Reduced logging level in test configuration.
This commit is contained in:
parent
3855024bba
commit
53813d94a9
|
@ -55,11 +55,10 @@ public abstract class AbstractTest
|
|||
http2Client.setExecutor(clientThreads);
|
||||
}
|
||||
|
||||
@Parameterized.Parameters(name = "{index}: mod:{0}")
|
||||
@Parameterized.Parameters(name = "transport: {0}")
|
||||
public static List<Object[]> parameters() throws Exception
|
||||
{
|
||||
HttpConfiguration httpConfiguration = new HttpConfiguration();
|
||||
|
||||
return Arrays.asList(
|
||||
new Object[]{new HttpClientTransportOverHTTP(), new HttpConnectionFactory(httpConfiguration)},
|
||||
new Object[]{new HttpClientTransportOverHTTP2(http2Client), new HTTP2ServerConnectionFactory(httpConfiguration)}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
|
||||
#org.eclipse.jetty.LEVEL=DEBUG
|
||||
org.eclipse.jetty.client.LEVEL=DEBUG
|
||||
org.eclipse.jetty.http2.LEVEL=DEBUG
|
||||
#org.eclipse.jetty.client.LEVEL=DEBUG
|
||||
#org.eclipse.jetty.http2.LEVEL=DEBUG
|
||||
org.eclipse.jetty.http2.hpack.LEVEL=INFO
|
||||
org.eclipse.jetty.http2.client.LEVEL=DEBUG
|
||||
#org.eclipse.jetty.http2.client.LEVEL=DEBUG
|
||||
|
|
Loading…
Reference in New Issue