
com.venky.core.log.InfoFileHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
The newest version!
package com.venky.core.log;
import java.io.IOException;
import java.util.logging.FileHandler;
import java.util.logging.Level;
public class InfoFileHandler extends FileHandler{
public InfoFileHandler() throws IOException, SecurityException {
super();
setLevel(Level.INFO);
}
public InfoFileHandler(String pattern, boolean append) throws IOException, SecurityException {
super(pattern, append);
setLevel(Level.INFO);
}
public InfoFileHandler(String pattern, int limit, int count, boolean append) throws IOException, SecurityException {
super(pattern, limit, count, append);
setLevel(Level.INFO);
}
public InfoFileHandler(String pattern, int limit, int count) throws IOException, SecurityException {
super(pattern, limit, count);
setLevel(Level.INFO);
}
public InfoFileHandler(String pattern) throws IOException, SecurityException {
super(pattern);
setLevel(Level.INFO);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy