Re: Redirect errors and debug to file with log4j with log4j.properties

2019-05-14 Thread Ralph Goers
Although you generally won’t find much help here since Log4j 1 was retired years ago, I find myself wondering why you have 2 root logger declarations. That is bound to cause problems. Ralph > On May 14, 2019, at 4:30 AM, Luis tuti wrote: > > Hi, > > I'm trying to redirect java errors to file

Re: Redirect errors and debug to file with log4j with log4j.properties

2019-05-14 Thread Matt Sicker
This is from version 1 which is no longer supported here as of a few years ago. I'd recommend upgrading to version 2.x if you can. On Tue, 14 May 2019 at 06:31, Luis tuti wrote: > > Hi, > > I'm trying to redirect java errors to file. I've modified log4j propierties > file but I can't see errors i

Redirect errors and debug to file with log4j with log4j.properties

2019-05-14 Thread Luis tuti
Hi, I'm trying to redirect java errors to file. I've modified log4j propierties file but I can't see errors in file My log4j.propierties is: log4j.appender.FILE.File=${user.home}/log2.out log4j.rootLogger = DEBUG, FILE log4j.rootLogger = ERROR, FILE # Define the file appender log4j.appender.FILE