| <?xml version="1.0" encoding="ISO-8859-1"?> |
| |
| <!-- the configuration of TurbineLoggingService --> |
| <configuration default="system"> |
| <!-- all mesages generated by Turbine itself go into |
| this logger. |
| --> |
| <logger |
| name="system" |
| class="org.apache.turbine.services.logging.FileLogger" |
| level="INFO" |
| > |
| <destination> |
| <file path="/logs/turbine.log"/> |
| </destination> |
| </logger> |
| |
| <!-- A facility for debuging applications. Messages will go both |
| to the log file and the server console. |
| --> |
| <logger |
| name="debug" |
| class="org.apache.turbine.services.logging.FileLogger" |
| level="INFO"> |
| <destination> |
| <file path="/logs/turbine.log"/> |
| <console/> |
| </destination> |
| </logger> |
| |
| <!-- a facility for security audit. NOTE! As of 23 Jan 2001 |
| Turbine does not have any standard security auditing |
| functionality. It's up to your application. |
| --> |
| <logger |
| name="security" |
| class="org.apache.turbine.services.logging.FileLogger" |
| level="NOTICE"> |
| <destination> |
| <file path="/logs/security.log"/> |
| </destination> |
| </logger> |
| </configuration> |