vote up 0 vote down star

Hi, I have the following line in my log4j.properties file:

log4j.appender.logfile.File=MyApplication.log

My log file appears in MyDomain/config directory, but I would like it to land in the MyDomain/logs directory. How can I achieve that? I am not allowed to modify the startserv script.

Thanks in advance for your help!

flag

3 Answers

vote up 1 vote down

In fact, it is log4j who resolves the variable ${catalina.home}, Glassfish declares ${catalina.home} as ${com.sun.aas.instanceRoot} that points to path/to/MyDomain/

You can declare any variable in GF environment and put it on log4j.properties, log4j will parse them when log4j is configured.

That is really useful to set server based logging configuration parameters, using same log4.properties for test and deployment

link|flag
vote up 1 vote down

The following is possible in Tomcat, perhaps Glassfish sets a similar environment variable pointing to it's filesystem location:

log4j.appender.logfile.File=${catalina.home}/logs/MyApplication.log

${catalina.home} is an environment/system property set by Tomcat pointing to it's install directory. Log4j is capable of expanding these, at least in the PropertyConfigurer.

link|flag
vote up 2 vote down

You need to specify an absolute path, not a relative one (assuming Unix paths):

log4j.appender.logfile.File=/path/to/MyDomain/logs/MyApplication.log
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.