Uses of Class
org.djutils.logger.LogCategory
Package | Description |
---|---|
org.djutils.logger |
Classes to assist in logging.
|
-
Uses of LogCategory in org.djutils.logger
Fields in org.djutils.logger declared as LogCategory Modifier and Type Field Description static LogCategory
LogCategory. ALL
The category to indicate that ALL messages need to be logged.Methods in org.djutils.logger that return types with arguments of type LogCategory Modifier and Type Method Description static ImmutableSet<LogCategory>
CategoryLogger. getLogCategories()
Return the set of all log categories (cached immutable copy).Methods in org.djutils.logger with parameters of type LogCategory Modifier and Type Method Description static void
CategoryLogger. addLogCategory(LogCategory logCategory)
Add a category to be logged to the Writers.static CategoryLogger.DelegateLogger
CategoryLogger. filter(LogCategory logCategory)
Check whether the provided category needs to be logged.static CategoryLogger.DelegateLogger
CategoryLogger. filter(LogCategory... logCategories)
Check whether the provided categories contain one or more categories that need to be logged.static void
CategoryLogger. removeLogCategory(LogCategory logCategory)
Remove a category to be logged to the Writers.static void
CategoryLogger. setLogCategories(LogCategory... newLogCategories)
Set the categories to be logged to the Writers.Method parameters in org.djutils.logger with type arguments of type LogCategory Modifier and Type Method Description static CategoryLogger.DelegateLogger
CategoryLogger. filter(Set<LogCategory> logCategories)
Check whether the provided categories contain one or more categories that need to be logged.