Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2014-03-20 21:13:29 +0000
committerJoakim Erdfelt2014-03-20 21:13:29 +0000
commit18fb0c8877b4b6db505a684e237d3c61491c8331 (patch)
treec10808203371099d8c2a1ff1bd95cd3065557b82 /jetty-util
parentb994db698c8e223c92444a49d1fdfb2c27559b04 (diff)
downloadorg.eclipse.jetty.project-18fb0c8877b4b6db505a684e237d3c61491c8331.tar.gz
org.eclipse.jetty.project-18fb0c8877b4b6db505a684e237d3c61491c8331.tar.xz
org.eclipse.jetty.project-18fb0c8877b4b6db505a684e237d3c61491c8331.zip
430824 - jetty-start / use of jetty-logging.xml prevents configuration of ThreadPool in jetty.xml
+ Setting <Configure> to configure itself, not Server
Diffstat (limited to 'jetty-util')
-rw-r--r--jetty-util/src/main/config/etc/jetty-logging.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/jetty-util/src/main/config/etc/jetty-logging.xml b/jetty-util/src/main/config/etc/jetty-logging.xml
index fa232ef829..52589eefe7 100644
--- a/jetty-util/src/main/config/etc/jetty-logging.xml
+++ b/jetty-util/src/main/config/etc/jetty-logging.xml
@@ -8,7 +8,7 @@
<!-- other configuration files. e.g. -->
<!-- java -jar start.jar etc/jetty-logging.xml -->
<!-- =============================================================== -->
-<Configure id="Server" class="org.eclipse.jetty.server.Server">
+<Configure id="logging" class="org.eclipse.jetty.util.log.Log">
<New id="ServerLog" class="java.io.PrintStream">
<Arg>
@@ -22,7 +22,7 @@
</Arg>
</New>
- <Get class="org.eclipse.jetty.util.log.Log" name="rootLogger">
+ <Get name="rootLogger">
<Call name="info"><Arg>Redirecting stderr/stdout to <Ref refid="ServerLogName"/></Arg></Call>
</Get>
<Call class="java.lang.System" name="setErr"><Arg><Ref refid="ServerLog"/></Arg></Call>

Back to the top