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_3alpha_6 :: src / java / org / apache / ugli /

LoggerFactoryAdapter.java

/*
 * Created on Dec 30, 2004
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package org.apache.ugli;



/**
 * LoggerFactoryAdapter interface is used internally by {@link LoggerFactory}.
 * 
 * <p>Only developers wishing to write new UGLI adapters need to worry about
 * this interface.
 * 
 * @author Ceki G&uuml;lc&uuml;
 *
 */
public interface LoggerFactoryAdapter {
  
  /**
   * Return the appropriate named {@link ULogger} instance.
   */
  public ULogger getLogger(String name);
  
  /**
   * Return a {@link ULogger} instance in <code>domain</code>, <code>subDomain</code>. 
   *
   * @param domain
   * @param subDomain
   * @return ULogger instance
   */
  public ULogger getLogger(String domain, String subDomain);  
}

[See repo JSON]