org.dstadler.commons.logging.log4j.Log4jUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-dost Show documentation
Show all versions of commons-dost Show documentation
Common utilities I find useful in many of my projects.
package org.dstadler.commons.logging.log4j;
import java.util.Enumeration;
import org.apache.log4j.Logger;
import org.apache.log4j.RollingFileAppender;
public class Log4jUtils {
/**
* Manually roll over logfiles to start with a new logfile
*/
public static void rolloverLogfile() {
Logger logger = Logger.getRootLogger(); // NOSONAR - local logger used on purpose here
@SuppressWarnings("unchecked")
Enumeration
© 2015 - 2025 Weber Informatics LLC | Privacy Policy