|
|
|
General
|
Limiting the Size of a Log File in Java
This section illustrates you how to limit the size of a log file in Java. Log files haven't any boundation at the file creation time but Java provides the facility for limiting the size of a log file with the help of FileHandler.
View Rating |
|
|
General
|
Comparing Log Levels in Java
This section describes, how to compare log levels to each other. In Java, the Level class assigns a set of multiple logging levels that has already an individual integer type value. With the help of this you can compare log levels and get specified result
View Rating |
|
|
General
|
What is Logging Level?
Logger: Logger is the class of java.util.logging package that extends the Object class. Java provides logging APIs like: Logger, Level, Handler etc. for implementing logging features in your java application.
View Rating |
|
|
General
|
Setting a Filter on a Logger Handler in Java
This section illustrates you how to set filter on a logger handler in Java. Generally, Filter is a program that provides the facility to get data if the certain conditions are satisfied otherwise don't get any data. In other words, you get data to be filt
View Rating |
|
|
General
|
Forward Log Records to Its Parent
This section describes how to forward log records to its parent. You know that a logger sends both log records (messages declared before setting the log for it's parent and log messages after setting for it's parent) to handlers, parent or ancestor. See d
View Rating |
|
|