matrix.dev-stack.local.log.config 694 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. version: 1
  2. formatters:
  3. precise:
  4. format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s'
  5. handlers:
  6. console:
  7. class: logging.StreamHandler
  8. formatter: precise
  9. loggers:
  10. # This is just here so we can leave `loggers` in the config regardless of whether
  11. # we configure other loggers below (avoid empty yaml dict error).
  12. _placeholder:
  13. level: "INFO"
  14. synapse.storage.SQL:
  15. # beware: increasing this to DEBUG will make synapse log sensitive
  16. # information such as access tokens.
  17. level: INFO
  18. root:
  19. level: INFO
  20. handlers: [console]
  21. disable_existing_loggers: false