java.lang.Object | ||
↳ | com.microstrategy.utils.log.Handler | |
↳ | com.microstrategy.utils.log.ThreadLocalDebugHandler |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ThreadLocalDebugHandler()
dependency
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void | close() | ||||||||||
void |
configure(String propPrefix)
Requests the configurable object to configure itself.
| ||||||||||
void | flush() | ||||||||||
synchronized Level | getLevel() | ||||||||||
void | publish(LogRecord record) | ||||||||||
synchronized void | setLevel(Level newLevel) |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
dependency
Requests the configurable object to configure itself. The "partial properties key" is a parameter of this method. It allows different pluggable logger components to configure themselves without knowing their parent. For example let's assume we have in the logger.properties file a handler named "fileH". Then for the handler itself the prefix will be the "fileH". For the formatter of this handler the prefix will be "fileH.formatter". For the filter of this handler the prefix will be "fileH.filter". And so on. Here is the simplified handler creation workflow:
propPrefix | String The partial properties key. |
---|