(*args)
| 27 | logger = logging.getLogger(__name__) |
| 28 | |
| 29 | def logger_debug(*args): |
| 30 | return logger.debug(' '.join(isinstance(a, str) and a or repr(a) for a in args)) |
| 31 | |
| 32 | # logging.basicConfig(level=logging.DEBUG, stream=sys.stdout) |
| 33 | logging.basicConfig(stream=sys.stdout) |
no test coverage detected