Interface TriggerLogger
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelegate(Logger logger)Delegate all logging calls to the specified logger.voidflush()Flush the logger.voidsetCategory(String newCategory)Set the category for this logger.voidsetLevel(Level newLevel)Set the level for this logger.
 
- 
- 
- 
Method Detail- 
setCategoryvoid setCategory(String newCategory) Set the category for this logger. Does not effect delegation.- Parameters:
- newCategory- the category to use.
 
 - 
delegatevoid delegate(Logger logger) Delegate all logging calls to the specified logger. Does not otherwise effect this logger.- Parameters:
- logger- the logger to delegate to.
 
 - 
setLevelvoid setLevel(Level newLevel) Set the level for this logger. Does not effect delegation.- Parameters:
- newLevel- the level to use.
 
 - 
flushvoid flush() Flush the logger.
 
- 
 
-