Interface TriggerLogger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delegate(Logger logger)
Delegate all logging calls to the specified logger.void
flush()
Flush the logger.void
setCategory(String newCategory)
Set the category for this logger.void
setLevel(Level newLevel)
Set the level for this logger.
-
-
-
Method Detail
-
setCategory
void setCategory(String newCategory)
Set the category for this logger. Does not effect delegation.- Parameters:
newCategory
- the category to use.
-
delegate
void delegate(Logger logger)
Delegate all logging calls to the specified logger. Does not otherwise effect this logger.- Parameters:
logger
- the logger to delegate to.
-
setLevel
void setLevel(Level newLevel)
Set the level for this logger. Does not effect delegation.- Parameters:
newLevel
- the level to use.
-
flush
void flush()
Flush the logger.
-
-