2
0

logfile.conf.xml 859 B

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