| | |
| | | public abstract class DebugLogPublisher<T extends DebugLogPublisherCfg> |
| | | implements LogPublisher<T> |
| | | { |
| | | //The default global settings key. |
| | | /** The default global settings key. */ |
| | | private static final String GLOBAL= "_global"; |
| | | |
| | | //The map of class names to their trace settings. |
| | | /** The map of class names to their trace settings. */ |
| | | private Map<String,TraceSettings> classTraceSettings; |
| | | |
| | | //The map of class names to their method trace settings. |
| | | /** The map of class names to their method trace settings. */ |
| | | private Map<String,Map<String,TraceSettings>> methodTraceSettings; |
| | | |
| | | |