(msg, *args)
| 47 | _logger.log(SUBDEBUG, msg, *args, stacklevel=2) |
| 48 | |
| 49 | def debug(msg, *args): |
| 50 | if _logger: |
| 51 | _logger.log(DEBUG, msg, *args, stacklevel=2) |
| 52 | |
| 53 | def info(msg, *args): |
| 54 | if _logger: |
no test coverage detected
searching dependent graphs…