|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.eng.spago.util.PortletTracer
public class PortletTracer
This class is for centralize the logging activities off all SpagoBI components, and to give a common format to logging message. Internally the TracerSingleton class of spago is used for implementation
Field Summary | |
---|---|
static java.lang.String |
SPAGO
|
Constructor Summary | |
---|---|
PortletTracer()
|
Method Summary | |
---|---|
static void |
critical(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with CRITICAL importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
critical(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with CRITICAL importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
debug(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with DEBUG importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
debug(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with DEBUG importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
info(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with INFORMATION importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
info(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with INFORMATION importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
major(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with MAJOR importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
major(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with MAJOR importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
minor(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with MINOR importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
minor(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with MINOR importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
warning(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message)
Adds a tracing information into the SpagoBI log file, with WARNING importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
static void |
warning(java.lang.String moduleName,
java.lang.String className,
java.lang.String methodName,
java.lang.String message,
java.lang.Exception e)
Adds a tracing information into the SpagoBI log file, with WARNING importance (see Spago Tracing docuentation for more details). it has as input all information needed for tracing: the module into whom tracing has been call, those of the relative class and method, the tracing message String. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String SPAGO
Constructor Detail |
---|
public PortletTracer()
Method Detail |
---|
public static void debug(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void info(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void warning(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void minor(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void major(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void critical(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagepublic static void debug(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exceptionpublic static void info(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exceptionpublic static void warning(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exceptionpublic static void minor(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exceptionpublic static void major(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exceptionpublic static void critical(java.lang.String moduleName, java.lang.String className, java.lang.String methodName, java.lang.String message, java.lang.Exception e)
moduleName
- The Module name StringclassName
- The Class name StringmethodName
- The Method name Stringmessage
- The Tracing messagee
- The occurred Exception
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |