org.identityconnectors.common.logging
Interface LogSpi


public interface LogSpi

Logging 'Service Provider Interface'.


Method Summary
 boolean isLoggable(Class<?> clazz, Log.Level level)
          Determines if the it should be logged based on Class and Level.
 void log(Class<?> clazz, String method, Log.Level level, String message, Throwable ex)
          Log given the class, level, message, and exception.
 

Method Detail

log

void log(Class<?> clazz,
         String method,
         Log.Level level,
         String message,
         Throwable ex)
Log given the class, level, message, and exception.

Parameters:
clazz - Class that logging.
level - the level at which to log.
message - optional message to send to the log.
ex - optional exception at logging point.

isLoggable

boolean isLoggable(Class<?> clazz,
                   Log.Level level)
Determines if the it should be logged based on Class and Level.



Copyright © 2012. All Rights Reserved.