Package org.apache.poi.util
Class POILogFactory
- java.lang.Object
-
- org.apache.poi.util.POILogFactory
-
@Internal public final class POILogFactory 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 POILogger
getLogger(java.lang.Class<?> theclass)
Get a logger, based on a class namestatic POILogger
getLogger(java.lang.String cat)
Get a logger, based on a String
-
-
-
Method Detail
-
getLogger
public static POILogger getLogger(java.lang.Class<?> theclass)
Get a logger, based on a class name- Parameters:
theclass
- the class whose name defines the log- Returns:
- a POILogger for the specified class
-
getLogger
public static POILogger getLogger(java.lang.String cat)
Get a logger, based on a String- Parameters:
cat
- the String that defines the log- Returns:
- a POILogger for the specified class
-
-