fsl.fsl 636 B

123456789101112131415161718192021222324252627282930
  1. ##
  2. ## fsl.fsl -- 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. prefix(
  18. prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
  19. )
  20. -> {
  21. debug: file(
  22. path="@l_prefix@/var/fsl/fsl.log",
  23. perm=0644
  24. )
  25. }
  26. };