The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

v1.3alpha8 :: examples / tiny-webapp / Hello / WebRoot / WEB-INF / classes /

hello-log4j.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration >

<configuration 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>
[See repo JSON]