|
The HERAS-AF XACML Core component uses the logging façade SLF4J (http://www.slf4j.org). On this page: SLF4J basicsSLF4J is a logging façade that can handle multiple logging implementations. Currently SLF4J supports the following logging implementations:
A programmer always uses the SLF4J API for programming the log-messages. For a detailed description of the SLF4J API refer to the SLF4J manual -> http://www.slf4j.org/manual.html. SLF4J bindingsSLF4J supports, as described above, multiple logging frameworks. Bind log4j, JCL or JDK1.4 loggingTo bind log4j, JCL or JDK1.4 logging with SLF4J the corresponding library (e.g. log4j.jar) has to be put into the classpath. But here, additionally the SLF4J binding library has also to be put onto the classpath (e.g. slf4j-log4j12-1.5.10.jar). For further information and details about binding logging frameworks to SLF4J have a look at the SLF4J manual -> http://www.slf4j.org/manual.html. |