fsl.default 670 B

12345678910111213141516171819202122232425262728293031
  1. ##
  2. ## fsl.default -- default OSSP fsl configuration
  3. ##
  4. # map syslog(3) API priorities to OSSP l2 levels
  5. # Notes: - syslog(3) has no corresponding priority for OSSP l2 "trace"
  6. # - OSSP l2 has no corresponding level for syslog(3) emerg
  7. map emerg panic;
  8. map alert panic;
  9. map crit critical;
  10. map err error;
  11. map warning warning;
  12. map notice notice;
  13. map info info;
  14. map debug debug;
  15. # default logging specification
  16. default (.+)/.+ q{
  17. debug:
  18. prefix(
  19. prefix="%b %d %H:%M:%S <%L> $1[%P]: ",
  20. timezone=local
  21. ) ->
  22. file(
  23. path="@l_prefix@/var/fsl/default.log",
  24. append=1,
  25. perm=0644
  26. )
  27. };