|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Methods of this interface are used to provide message logging to the users of an application. All the application's classes should use this interface for handling logging messages.
Method Summary | |
LogCatalog |
getMessageCatalog()
Returns the message logging catalog associated with loggers. |
void |
log(long type,
java.lang.Object loggingClass,
java.lang.String loggingMethod,
java.lang.String text)
Logs a text message. |
void |
message(long type,
java.lang.Object loggingClass,
java.lang.String loggingMethod,
java.lang.String key)
Logs a message, by key, with no parameters. |
void |
message(long type,
java.lang.Object loggingClass,
java.lang.String loggingMethod,
java.lang.String key,
java.lang.Object parm1)
Logs a message, by key, with one parameter. |
void |
message(long type,
java.lang.Object loggingClass,
java.lang.String loggingMethod,
java.lang.String key,
java.lang.Object[] parms)
Logs a message, by key, with an array of parameters. |
void |
message(long type,
java.lang.Object loggingClass,
java.lang.String loggingMethod,
java.lang.String key,
java.lang.Object parm1,
java.lang.Object parm2)
Logs a message, by key, with two parameters. |
Methods inherited from interface com.tivoli.jflt.BasicLogger |
isLogging,
setLogging |
Method Detail |
public void message(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String key)
type
- The message type.loggingClass
- The class name or handle of the logging class.loggingMethod
- The name of the logging method.key
- The message key.public void message(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String key, java.lang.Object parm1)
type
- The message type.loggingClass
- The class name or handle of the logging class.loggingMethod
- The name of the logging method.key
- The message key.parm1
- An element to be inserted into the message.public void message(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String key, java.lang.Object parm1, java.lang.Object parm2)
type
- The message type.loggingClass
- The class name or handle of the logging class.loggingMethod
- The name of the logging method.key
- The message key.parm1
- An element to be inserted into the message.parm2
- An element to be inserted into the message.public void message(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String key, java.lang.Object[] parms)
type
- The message type.loggingClass
- The class name or handle of the logging class.loggingMethod
- The name of the logging method.key
- The message key.parms
- An array of elements to be inserted into the message.public void log(long type, java.lang.Object loggingClass, java.lang.String loggingMethod, java.lang.String text)
type
- The message type.loggingClass
- The class name or handle of the logging class.loggingMethod
- The name of the logging method.text
- The message text.public LogCatalog getMessageCatalog()
LogCatalog
interface.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |