Home | History | Annotate | Download | only in logging

Lines Matching refs:FileHandler

32  * A {@code FileHandler} writes logging records into a specified file or a
44 * {@code XMLFormatter} is the default formatter for {@code FileHandler}.
46 * {@code FileHandler} reads the following {@code LogManager} properties for
50 * <li>java.util.logging.FileHandler.append specifies whether this
51 * {@code FileHandler} should append onto existing files, defaults to
53 * <li>java.util.logging.FileHandler.count specifies how many output files to
55 * <li>java.util.logging.FileHandler.filter specifies the {@code Filter} class
57 * <li>java.util.logging.FileHandler.formatter specifies the {@code Formatter}
59 * <li>java.util.logging.FileHandler.encoding specifies the character set
61 * <li>java.util.logging.FileHandler.level specifies the level for this
63 * <li>java.util.logging.FileHandler.limit specifies the maximum number of
65 * <li>java.util.logging.FileHandler.pattern specifies name pattern for the
87 * one {@code FileHandler} tries to open the filename which is currently in use
95 public class FileHandler extends StreamHandler {
116 // whether the FileHandler should open a existing file for output in append
142 * Construct a {@code FileHandler} using {@code LogManager} properties or
148 public FileHandler() throws IOException {
367 * Constructs a new {@code FileHandler}. The given name pattern is used as
382 public FileHandler(String pattern) throws IOException {
390 * Construct a new {@code FileHandler}. The given name pattern is used as
408 public FileHandler(String pattern, boolean append) throws IOException {
417 FileHandler}. The given name pattern is used as
439 public FileHandler(String pattern, int limit, int count) throws IOException {
450 * Construct a new {@code FileHandler}. The given name pattern is used as
475 public FileHandler(String pattern, int limit, int count, boolean append) throws IOException {