logger.conf.sample 843 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ;
  2. ; Logging Configuration
  3. ;
  4. ; In this file, you configure logging to files or to
  5. ; the syslog system.
  6. ;
  7. ; For each file, specify what to log.
  8. ;
  9. ; For console logging, you set options at start of
  10. ; Asterisk with -v for verbose and -d for debug
  11. ; See 'asterisk -h' for more information.
  12. ;
  13. ; Directory for log files is configures in asterisk.conf
  14. ; option astlogdir
  15. ;
  16. [logfiles]
  17. ;
  18. ; Format is "filename" and then "levels" of debugging to be included:
  19. ; debug
  20. ; notice
  21. ; warning
  22. ; error
  23. ; verbose
  24. ;
  25. ; Special filename "console" represents the system console
  26. ;
  27. ;debug => debug
  28. console => notice,warning,error
  29. ;console => notice,warning,error,debug
  30. messages => notice,warning,error
  31. ;full => notice,warning,error,debug,verbose
  32. ;syslog keyword : This special keyword logs to syslog facility
  33. ;
  34. ;syslog.local0 => notice,warning,error
  35. ;