(self)
| 4923 | ALLOWED_TYPES = ('processes',) |
| 4924 | |
| 4925 | def test_enable_logging(self): |
| 4926 | logger = multiprocessing.get_logger() |
| 4927 | logger.setLevel(util.SUBWARNING) |
| 4928 | self.assertTrue(logger is not None) |
| 4929 | logger.debug('this will not be printed') |
| 4930 | logger.info('nor will this') |
| 4931 | logger.setLevel(LOG_LEVEL) |
| 4932 | |
| 4933 | @classmethod |
| 4934 | def _test_level(cls, conn): |
nothing calls this directly
no test coverage detected