(*args)
| 31 | logger = logging.getLogger(__name__) |
| 32 | |
| 33 | def logger_debug(*args): |
| 34 | return logger.debug(' '.join(isinstance(a, str) and a or repr(a) for a in args)) |
| 35 | |
| 36 | logging.basicConfig(stream=sys.stdout) |
| 37 | logger.setLevel(logging.DEBUG) |
no test coverage detected