enums.py 232 B

12345678910111213141516
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. @Author: hywell
  5. @Email: hywell.28@gmail.com
  6. @Blog: iassas.com
  7. @Date: 2019/10/16 13:41
  8. """
  9. class CUSTOM_LOGGING:
  10. SYSINFO = 21
  11. SUCCESS = 22
  12. ERROR = 23
  13. WARNING = 24