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_2_1 :: src / java / org / apache / log4j / test /

DefaultInit.java


package org.apache.log4j.test;

import org.apache.log4j.Category;

public class DefaultInit {

  static Category cat = Category.getInstance(DefaultInit.class);

  public static void main( String[] argv) {
    cat.debug("Hello world");
  }

  static
  void Usage(String msg) {
    System.err.println(msg);
    System.err.println( "Usage: java org.apache.log4j.test.DefaultInit ");
    System.exit(1);
  }

}

[See repo JSON]