我是log4j的新手。我已经创建了一个示例java程序,在其中实现了log4j。
下面是java程序:
package logging;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Logger;
public class Logging {
/**
* @param args the command line arguments
*/
private static Logger logger = Logger.getLogger(Logging.class);
public static void main(String[] args) {
BasicConfigurator.configure();
logger.trace("This is a Trace");
logger.debug("This is a Debug");
logger.info("This is an Info");
logger.warn("This is a Warn");
logger.error("This is an Error");
logger.fatal("This is a Fatal");
}
}
我在控制台屏幕上得到了输出。但是*日志文件没有*生成。我还使用以下链接在Eclipse氖中配置了我的项目:Configuration
我已经做好了一切。但是日志文件没有生成。当我以编程方式实现log4j时,文件正在生成。下面是我的属性文件:
# root
log4j.logger.com.apress.logging.log4j=debug,dest
log4j.additivity.com.apress.logging.log4j=false
# define the appender
log4j.appender.dest = org.apache.log4j.DailyRollingFileAppender
# set the name of the file
log4j.appender.dest.File=${user.home}/log.out
# setting the immediate flush to true (default)
log4j.appender.dest.ImmediateFlush=true
# setting the threshold
log4j.appender.dest.Threshold=ERROR
# setting the append to false, overwrite
log4j.appender.dest.Append=true
# set the DatePattern
log4j.appender.dest.DatePattern='.' yyyy-MM-dd
要让Log4J写入日志文件,需要执行什么操作?
3条答案
按热度按时间30byixjq1#
确保log4j.properties位于默认包中
cunj1qz12#
您可以参考此文件:log4j.properties
bjp0bcyl3#
我必须在我的
log4j2.xml
文件中给予绝对路径(对于Windows,使用Intellij IDEA),如下所示: