log4j on WebSphere Application Server

2011-04-01 Thread nulll
Hi, I configured my logging with log4j.properties file using a FileAppender. When I do my local development, I use Tomcat under Windows. When deploying on managed-environments (sys, acc, prod), I use WebSphere under Linux. Since my various environment use dedicated file structure, I'd like to

Re: log4j on WebSphere Application Server

2011-04-01 Thread Jacob Kjome
You can reference Java system properties using the syntaxt ${somePropertyName}, e.g., log4j.appender.A1.File=${log.dir}/stdout.log You can set Java system properties on the command line using... java -Dlog.dir=/path/to/log/directory Jake On 4/1/2011 1:10 PM, nulll wrote: Hi,

Re: Why There isn't a Log File?

2011-04-01 Thread Jacob Kjome
You can use an XML config file just fine under Tomcat (with caveats... see below). I see two issues with your current XML config, though 1. The doctype should be... !DOCTYPE log4j:configuration SYSTEM log4j.dtd 2. The path in... param name=File value=c:\myproj\myapp\logs\mylog.log /