syslog.conf 778 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # /etc/syslog.conf - Configuration file for syslogd(8)
  3. #
  4. # For information about the format of this file, type:
  5. # "man 5 syslog.conf"
  6. #
  7. #
  8. # Authentication and user related logs
  9. #
  10. auth.*; authpriv.* -/var/log/auth.log
  11. *.*;auth,authpriv.none -/var/log/syslog
  12. user.* -/var/log/user.log
  13. #
  14. # Debug information
  15. #
  16. *.=debug -/var/log/debug
  17. #
  18. # Log info and notice messages
  19. #
  20. *.=info;*.=notice;\
  21. mail.none -/var/log/messages
  22. #
  23. # Kernel information
  24. #
  25. kern.* -/var/log/kernel.log
  26. #
  27. # Mail system log
  28. #
  29. mail.* -/var/log/mail.log
  30. #
  31. # Emergencies are sent to anyone logged in
  32. #
  33. *.=emerg *
  34. #
  35. # Priority alert and above are sent to the operator
  36. #
  37. #*.alert root,joey
  38. #
  39. # Include all config files from /etc/syslog.d/
  40. #
  41. include /etc/syslog.d/*.conf