Home | History | Annotate | Download | only in logging

Lines Matching defs:FileHandler

54  * The <tt>FileHandler</tt> can either write to a specified file,
68 * By default each <tt>FileHandler</tt> is initialized using the following
96 * specifies whether the FileHandler should append onto
100 * For example, the properties for {@code FileHandler} would be:
102 * <li> java.util.logging.FileHandler.level=INFO </li>
103 * <li> java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter </li>
133 * Normally the "%u" unique field is set to 0. However, if the <tt>FileHandler</tt>
136 * again. This will be repeated until <tt>FileHandler</tt> finds a file name that
151 public class FileHandler extends StreamHandler {
218 * Configure a FileHandler from LogManager properties and/or default values
253 * Construct a default <tt>FileHandler</tt>. This will be configured
261 public FileHandler() throws IOException, SecurityException {
268 * Initialize a <tt>FileHandler</tt> to write to the given filename.
270 * The <tt>FileHandler</tt> is configured based on <tt>LogManager</tt>
284 public FileHandler(String pattern) throws IOException, SecurityException {
297 * Initialize a <tt>FileHandler</tt> to write to the given filename,
300 * The <tt>FileHandler</tt> is configured based on <tt>LogManager</tt>
316 public FileHandler(String pattern, boolean append) throws IOException,
331 * Initialize a <tt>FileHandler</tt> to write to a set of files. When
336 * The <tt>FileHandler</tt> is configured based on <tt>LogManager</tt>
353 public FileHandler(String pattern, int limit, int count)
367 * Initialize a <tt>FileHandler</tt> to write to a set of files
372 * The <tt>FileHandler</tt> is configured based on <tt>LogManager</tt>
392 public FileHandler(String pattern, int limit, int count, boolean append)
449 // We already own this lock, for a different FileHandler
515 // than new FileHandler(...);