PageRenderTime 35ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/apache-log4j-1.2.17/tests/resources/org/apache/log4j/rewrite/reflection.xml

#
XML | 38 lines | 17 code | 4 blank | 17 comment | 0 complexity | 994d6f879f5a0c5f1f0063606536f64f MD5 | raw file
Possible License(s): Apache-2.0
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
  16. <appender name="F1" class="org.apache.log4j.FileAppender">
  17. <param name="file" value="temp"/>
  18. <param name="append" value="false"/>
  19. <layout class="org.apache.log4j.PatternLayout">
  20. <param name="ConversionPattern" value="%p %c - p1:%X{p1} p2:%X{p2} %m%n"/>
  21. </layout>
  22. </appender>
  23. <appender name="A1" class="org.apache.log4j.rewrite.RewriteAppender">
  24. <appender-ref ref="F1"/>
  25. <rewritePolicy class="org.apache.log4j.rewrite.ReflectionRewritePolicy"/>
  26. </appender>
  27. <root>
  28. <level value ="debug" />
  29. <appender-ref ref="A1" />
  30. </root>
  31. </log4j:configuration>