Configuring Multiple Logging Outputs
To set more than one output destination:
Add additional appender-ref
elements to the logger.
Sample
The following sample enables you to place copies of the same log file in multiple locations.
<logger name="ingrian" level="DEBUG" >
<appender-ref ref="OUTPUT_ONE" />
<appender-ref ref="OUTPUT_TWO" />
</logger>