I have log4j configured to log to an HTMLLayout-formatted log file:
<appender name="VMHTML" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="LogFile.html"/>
<param name="Append" value="false"/>
<param name="MaxFileSize" value="500KB"/>
<param name="MaxBackupIndex" value="20"/>
<param name="threshold" value="info"/>
<layout class="org.apache.log4j.HTMLLayout"/>
</appender>
However, I would like to be able to link to this log file in my Webapp. I
can't figure out how to send it to a location that is accessible that way.
And I'd like to do it in an app-server independent way. Can I do it with a
single config file or a per-server config file?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]