Merge branch 'jetty-9.3.x' of github.com:eclipse/jetty.project into jetty-9.3.x
This commit is contained in:
commit
f775187538
|
@ -45,6 +45,8 @@ The default configuration for logging output will create a file `${jetty.logs}/y
|
||||||
|
|
||||||
For more advanced logging configurations, please consider use of a separate logging library.
|
For more advanced logging configurations, please consider use of a separate logging library.
|
||||||
|
|
||||||
|
[[stderr-properties]]
|
||||||
|
==== The jetty-logging.properties File
|
||||||
The recommended way to configure `StdErrLog` is to create a `${jetty.home}/resources/jetty-logging.properties` file, specify the log implementation to `StdErrLog` and then setup logging levels.
|
The recommended way to configure `StdErrLog` is to create a `${jetty.home}/resources/jetty-logging.properties` file, specify the log implementation to `StdErrLog` and then setup logging levels.
|
||||||
|
|
||||||
[source,properties]
|
[source,properties]
|
||||||
|
|
|
@ -44,8 +44,10 @@ import org.eclipse.jetty.util.log.Log;
|
||||||
import org.eclipse.jetty.util.log.Logger;
|
import org.eclipse.jetty.util.log.Logger;
|
||||||
import org.eclipse.jetty.util.ssl.SslContextFactory;
|
import org.eclipse.jetty.util.ssl.SslContextFactory;
|
||||||
import org.eclipse.jetty.util.thread.QueuedThreadPool;
|
import org.eclipse.jetty.util.thread.QueuedThreadPool;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
@Ignore
|
||||||
public class SlowClientsTest
|
public class SlowClientsTest
|
||||||
{
|
{
|
||||||
private Logger logger = Log.getLogger(getClass());
|
private Logger logger = Log.getLogger(getClass());
|
||||||
|
|
Loading…
Reference in New Issue