It's a type of Planche
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

all_loggers.py 227B

123456789
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import logging
  4. all_except_root_loggers = [
  5. logging.getLogger(name) for name in logging.root.manager.loggerDict
  6. ]
  7. all_loggers = [logging.getLogger(), *all_except_root_loggers]