Uses of Enum
org.identityconnectors.common.logging.Log.Level
Package
Description
This package is responsible for providing logging to the Framework and
the Connectors.
-
Uses of Log.Level in org.identityconnectors.common.logging
Modifier and TypeMethodDescriptionstatic Log.Level
Returns the enum constant of this type with the specified name.static Log.Level[]
Log.Level.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionboolean
Log.isLoggable
(Log.Level level) Determine if its log-able at this level within this class.boolean
LogSpi.isLoggable
(Class<?> clazz, Log.Level level) Determines if the it should be logged based on Class and Level.void
Lowest level logging method.void
Logs based on the parameters given.protected void
Log.log
(Log.Level level, Throwable ex, String message, StackTraceElement[] locations) void
Log given the class, level, message, and exception.void
Log given the class, level, message, and exception.boolean
LogSpi.needToInferCaller
(Class<?> clazz, Log.Level level) Determines ifLog
need to infer caller based on Class and Level. -
Uses of Log.Level in org.identityconnectors.common.logging.impl
Modifier and TypeMethodDescriptionboolean
JDKLogger.isLoggable
(Class<?> clazz, Log.Level level) Use the internal JDK logger to determine if the level is worthy of logging.boolean
NoOpLogger.isLoggable
(Class<?> clazz, Log.Level level) Always returnsfalse
because there nothing to do.void
JDKLogger.log
(Class<?> clazz, StackTraceElement caller, Log.Level level, String message, Throwable ex) Uses the JDK logger to log the message.void
Uses the JDK logger to log the message.void
NoOpLogger.log
(Class<?> clazz, StackTraceElement method, Log.Level level, String message, Throwable ex) void
Logs nothing.boolean
JDKLogger.needToInferCaller
(Class<?> clazz, Log.Level level) boolean
NoOpLogger.needToInferCaller
(Class<?> clazz, Log.Level level) -
Uses of Log.Level in org.identityconnectors.common.logging.slf4j
Modifier and TypeMethodDescriptionboolean
SLF4JLog.isLoggable
(Class<?> clazz, Log.Level level) Use the internal SLF4J logger to determine if the level is worthy of logging.void
SLF4JLog.log
(Class<?> clazz, StackTraceElement method, Log.Level level, String message, Throwable ex) void
Uses the SLF4J logger to log the message.boolean
SLF4JLog.needToInferCaller
(Class<?> clazz, Log.Level level) The caller is extracted only if the Level is OK (Debug). -
Uses of Log.Level in org.identityconnectors.framework.impl.api.local.operations