2
0

logfile.conf.xml 663 B

12345678910111213141516171819202122
  1. <configuration name="logfile.conf" description="File Logging">
  2. <settings>
  3. <param name="rotate-on-hup" value="true"/>
  4. </settings>
  5. <profiles>
  6. <profile name="default">
  7. <settings>
  8. <!-- At this length in bytes rotate the log file (0 for never) -->
  9. <param name="rollover" value="10485760"/>
  10. </settings>
  11. <mappings>
  12. <!--
  13. name can be a file name, function name or 'all'
  14. value is one or more of debug,info,notice,warning,err,crit,alert,all
  15. -->
  16. <map name="all" value="debug,info,notice,warning,err,crit,alert"/>
  17. </mappings>
  18. </profile>
  19. </profiles>
  20. </configuration>