Skip navigation links
C D E F G H I L N O R S T V W 

C

configure(Logger) - Static method in class org.macroing.cit.logger.LoggerConfigurator
Call this method when you want to configure a given Logger instance.

D

DEBUG - Static variable in class org.macroing.cit.logger.Level
A Level used for debugging purposes.
debug(String) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.DEBUG.
debug(String, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.DEBUG.
debugf(String, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.DEBUG.
debugf(String, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.DEBUG.
doConfigure(Logger) - Method in class org.macroing.cit.logger.LoggerConfigurator
Called by the configure(Logger) method of this class, when it's time to configure a given Logger instance.

E

equals(Object) - Method in class org.macroing.cit.logger.Level
Returns true if, and only if, object is an instance of Level, and that Level instance is equal to this Level instance, false otherwise.
ERROR - Static variable in class org.macroing.cit.logger.Level
A Level used for arbitrary errors.
error(String) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.ERROR.
error(String, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.ERROR.
errorf(String, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.ERROR.
errorf(String, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.ERROR.

F

FATAL - Static variable in class org.macroing.cit.logger.Level
A Level used for fatal errors.
fatal(String) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.FATAL.
fatal(String, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.FATAL.
fatalf(String, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.FATAL.
fatalf(String, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.FATAL.

G

getCause() - Method in class org.macroing.cit.logger.LoggerMessage
Returns the optional cause.
getInstance() - Static method in class org.macroing.cit.logger.Logger
Returns the default Logger instance, with a key of "".
getInstance(Class<?>) - Static method in class org.macroing.cit.logger.Logger
Returns a Logger instance given a key of clazz.getName().
getInstance(String) - Static method in class org.macroing.cit.logger.Logger
Returns a Logger instance given a key of key.
getLevel() - Method in class org.macroing.cit.logger.LoggerMessage
Returns the Level used for the log.
getLoggers() - Static method in class org.macroing.cit.logger.Logger
Returns a Collection with all Loggers currently in use.
getMessage() - Method in class org.macroing.cit.logger.LoggerMessage
Returns the Message that contains the text for the log.
getMessageChannel() - Method in class org.macroing.cit.logger.Logger
Returns the underlying MessageChannel.
getName() - Method in class org.macroing.cit.logger.Level
Returns the name assigned to this Level instance.
getName() - Method in class org.macroing.cit.logger.LoggerMessage
Returns the name of the Logger.

H

hashCode() - Method in class org.macroing.cit.logger.Level
Returns a hash-code for this Level instance.

I

INFO - Static variable in class org.macroing.cit.logger.Level
A Level used for arbitrary information.
info(String) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.INFO.
info(String, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.INFO.
infof(String, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.INFO.
infof(String, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.INFO.

L

Level - Class in org.macroing.cit.logger
A class representing a logging level.
log(String, Level) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using level.
log(String, Level, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using level.
logf(String, Level, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using level.
logf(String, Level, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using level.
Logger - Class in org.macroing.cit.logger
A Messaging extension for logging.
LoggerConfigurator - Class in org.macroing.cit.logger
A LoggerConfigurator makes it possible to separate the configuration of any and all Loggers from the use of them.
LoggerConfigurator() - Constructor for class org.macroing.cit.logger.LoggerConfigurator
Constructs a new LoggerConfigurator instance.
LoggerMessage - Class in org.macroing.cit.logger
A Message extension containing various information about a log from a Logger.

N

newInstance() - Static method in class org.macroing.cit.logger.Logger
Returns a new empty Logger instance.
newInstance(String, Message, Level) - Static method in class org.macroing.cit.logger.LoggerMessage
Returns a new LoggerMessage.
newInstance(String, Message, Level, Throwable) - Static method in class org.macroing.cit.logger.LoggerMessage
Returns a new LoggerMessage.
newInstance(String, String, Level) - Static method in class org.macroing.cit.logger.LoggerMessage
Returns a new LoggerMessage.
newInstance(String, String, Level, Throwable) - Static method in class org.macroing.cit.logger.LoggerMessage
Returns a new LoggerMessage.

O

onStart() - Method in class org.macroing.cit.logger.Logger
Overridden to handle start logic.
onStop() - Method in class org.macroing.cit.logger.Logger
Overridden to handle stop logic.
org.macroing.cit.logger - package org.macroing.cit.logger
Provides the API for CIT Logger.

R

reset() - Method in class org.macroing.cit.logger.Logger
Resets this Logger to its initial empty state.

S

setLoggerConfigurator(LoggerConfigurator) - Static method in class org.macroing.cit.logger.LoggerConfigurator
Sets a new LoggerConfigurator instance to configure any and all Loggers.

T

toString() - Method in class org.macroing.cit.logger.Level
Returns a String representation of this Level instance.
toString() - Method in class org.macroing.cit.logger.LoggerMessage
Returns a String representation of this LoggerMessage instance.

V

valueOf(String) - Static method in class org.macroing.cit.logger.Level
Returns a Level instance given its name.

W

WARNING - Static variable in class org.macroing.cit.logger.Level
A Level used for warnings.
warning(String) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.WARNING.
warning(String, Throwable) - Method in class org.macroing.cit.logger.Logger
Call this method to log message using Level.WARNING.
warningf(String, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.WARNING.
warningf(String, Throwable, Object...) - Method in class org.macroing.cit.logger.Logger
Call this method to log String.format(format, objects) using Level.WARNING.
C D E F G H I L N O R S T V W 
Skip navigation links