config.py 791 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python3
  2. from logging import basicConfig, DEBUG, INFO, WARN, ERROR, CRITICAL, getLogger
  3. from logging.handlers import TimedRotatingFileHandler
  4. from os.path import exists, join, dirname, abspath
  5. # Get the full path for this file
  6. currentdir = dirname(abspath(__file__))
  7. # Target log file
  8. TARGET = join("bbs", join("logs", "enigma-bbs.log"))
  9. # Setup logging
  10. # DEBUG, INFO, WARN, ERROR, CRITICAL
  11. basicConfig(
  12. level=INFO,
  13. format="%(asctime)s - %(filename)s (%(lineno)d) - %(name)s - %(levelname)s - %(message)s",
  14. handlers=[
  15. TimedRotatingFileHandler(
  16. filename=join(currentdir, "failUser.log"),
  17. when="midnight",
  18. backupCount=1,
  19. ),
  20. #logging.StreamHandler(stream=sys.stdout),
  21. ],
  22. )
  23. log = getLogger("failUser")