20080913, rgf

org.apache.bsf
Class BSF_LogFactory

java.lang.Object
  extended byorg.apache.bsf.BSF_LogFactory

public class BSF_LogFactory
extends java.lang.Object

This class is used in BSF as BSF_LogFactory returning a BSF_Log instance, which is a delegator for an org.apache.commons.logging.Log object. It implements the static org.apache.commons.logging.LogFactory.getLog({String|Class} object) methods which return an instance of the class org.apache.bsf.BSF_Log, which in turn implements all the methods of the org.apache.commons.logging.Log interface class.

Author:
Rony G. Flatscher, 2006-12-08

Constructor Summary
protected BSF_LogFactory()
           
 
Method Summary
static BSF_Log getLog(java.lang.Class clz)
           
static BSF_Log getLog(java.lang.String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BSF_LogFactory

protected BSF_LogFactory()
Method Detail

getLog

public static BSF_Log getLog(java.lang.String name)

getLog

public static BSF_Log getLog(java.lang.Class clz)

20080913, rgf