Package org.exoplatform.services.log
Interface ExoLogFactory
- All Known Implementing Classes:
AbstractExoLogFactory,SimpleExoLogFactory,SLF4JExoLogFactory
public interface ExoLogFactory
This factory garantees the plugability of the logging system.
-
Method Summary
Modifier and TypeMethodDescriptiongetExoLogger(Class clazz) Obtain a logger for the specified name.getExoLogger(String name) Obtain a logger for the specified name.
-
Method Details
-
getExoLogger
Obtain a logger for the specified name.- Parameters:
name- the logger name- Returns:
- the logger
- Throws:
NullPointerException- if the name is null
-
getExoLogger
Obtain a logger for the specified name.- Parameters:
clazz- the logger name- Returns:
- the logger
- Throws:
NullPointerException- if the name is null
-