Fixing command line build failure

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@850 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Joakim Erdfelt 2009-09-09 18:03:10 +00:00
parent 2bbf944a20
commit 1148817866
2 changed files with 1 additions and 21 deletions

View File

@ -28,27 +28,6 @@
<artifactId>jetty-centralized-logging</artifactId>
<name>Jetty :: Centralized Logging</name>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>config.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>

View File

@ -232,6 +232,7 @@ public class CentralLoggerConfig
root.appenders = getAppenders(props,"root.appenders",declaredAppenders);
if (root.appenders == null)
{
root.appenders = new ArrayList<Appender>();
// Default (if not specified for root)
root.appenders.add(new ConsoleAppender());
}