mirror of https://github.com/apache/archiva.git
[MRM-1216] remove jetty-logging configuration and log everything to stdout (wrapper.log)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@794571 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ef459b78e
commit
90f6791b4c
|
@ -86,7 +86,6 @@
|
||||||
<mainClass>org.mortbay.start.Main</mainClass>
|
<mainClass>org.mortbay.start.Main</mainClass>
|
||||||
<commandLineArguments>
|
<commandLineArguments>
|
||||||
<commandLineArgument>conf/jetty.xml</commandLineArgument>
|
<commandLineArgument>conf/jetty.xml</commandLineArgument>
|
||||||
<commandLineArgument>conf/jetty-logging.xml</commandLineArgument>
|
|
||||||
</commandLineArguments>
|
</commandLineArguments>
|
||||||
<platforms>
|
<platforms>
|
||||||
<platform>jsw</platform>
|
<platform>jsw</platform>
|
||||||
|
@ -119,10 +118,6 @@
|
||||||
<name>wrapper.app.parameter.2</name>
|
<name>wrapper.app.parameter.2</name>
|
||||||
<value>%ARCHIVA_BASE%/conf/jetty.xml</value>
|
<value>%ARCHIVA_BASE%/conf/jetty.xml</value>
|
||||||
</property>
|
</property>
|
||||||
<property>
|
|
||||||
<name>wrapper.app.parameter.3</name>
|
|
||||||
<value>%ARCHIVA_BASE%/conf/jetty-logging.xml</value>
|
|
||||||
</property>
|
|
||||||
<property>
|
<property>
|
||||||
<name>app.base.envvar</name>
|
<name>app.base.envvar</name>
|
||||||
<value>ARCHIVA_BASE</value>
|
<value>ARCHIVA_BASE</value>
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =============================================================== -->
|
|
||||||
<!-- Configure stderr and stdout to a Jetty rollover log file -->
|
|
||||||
<!-- this configuration file should be used in combination with -->
|
|
||||||
<!-- other configuration files. e.g. -->
|
|
||||||
<!-- java -jar start.jar etc/jetty-logging.xml etc/jetty.xml -->
|
|
||||||
<!-- =============================================================== -->
|
|
||||||
<Configure id="Server" class="org.mortbay.jetty.Server">
|
|
||||||
|
|
||||||
<New id="ServerLog" class="java.io.PrintStream">
|
|
||||||
<Arg>
|
|
||||||
<New class="org.mortbay.util.RolloverFileOutputStream">
|
|
||||||
<Arg><SystemProperty name="jetty.logs" default="./logs"/>/yyyy_mm_dd.stderrout.log</Arg>
|
|
||||||
<Arg type="boolean">false</Arg>
|
|
||||||
<Arg type="int">90</Arg>
|
|
||||||
<Arg><Call class="java.util.TimeZone" name="getTimeZone"><Arg>GMT</Arg></Call></Arg>
|
|
||||||
<Get id="ServerLogName" name="datedFilename"/>
|
|
||||||
</New>
|
|
||||||
</Arg>
|
|
||||||
</New>
|
|
||||||
|
|
||||||
<Call class="org.mortbay.log.Log" name="info"><Arg>Redirecting stderr/stdout to <Ref id="ServerLogName"/></Arg></Call>
|
|
||||||
<Call class="java.lang.System" name="setErr"><Arg><Ref id="ServerLog"/></Arg></Call>
|
|
||||||
<Call class="java.lang.System" name="setOut"><Arg><Ref id="ServerLog"/></Arg></Call>
|
|
||||||
|
|
||||||
</Configure>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue