Package org.apache.xmlbeans.impl.common
Class XBLogFactory
- java.lang.Object
-
- org.apache.xmlbeans.impl.common.XBLogFactory
-
public final class XBLogFactory extends java.lang.Object
Provides logging without clients having to mess with configuration/initialization.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XBLogger
getLogger(java.lang.Class<?> theclass)
Get a logger, based on a class namestatic XBLogger
getLogger(java.lang.String cat)
Get a logger, based on a String
-
-
-
Method Detail
-
getLogger
public static XBLogger getLogger(java.lang.Class<?> theclass)
Get a logger, based on a class name- Parameters:
theclass
- the class whose name defines the log- Returns:
- a XBLogger for the specified class
-
getLogger
public static XBLogger getLogger(java.lang.String cat)
Get a logger, based on a String- Parameters:
cat
- the String that defines the log- Returns:
- a XBLogger for the specified class
-
-