You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by ce...@apache.org on 2005/01/20 13:35:17 UTC

cvs commit: logging-log4j/examples/tiny-webapp/Hello/WebRoot/WEB-INF/classes hello-log4j.xml

ceki        2005/01/20 04:35:17

  Added:       examples/tiny-webapp/Hello/WebRoot/WEB-INF/classes
                        hello-log4j.xml
  Log:
  Added missing config file
  
  Revision  Changes    Path
  1.1                  logging-log4j/examples/tiny-webapp/Hello/WebRoot/WEB-INF/classes/hello-log4j.xml
  
  Index: hello-log4j.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8" ?>
  <!DOCTYPE configuration >
  
  <configuration debug="true" xmlns='http://logging.apache.org/'>
  
    <!-- Append log to the CONSOLE appender -->
    <appender name="console" class="org.apache.log4j.ConsoleAppender">
      <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="HELLO %-5p [%t] %c - %m%n"/>
      </layout>
    </appender>
  
    <root>
      <level value="debug"/>
      <appender-ref ref="console"/>
    </root>
   
  
  </configuration>
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org