(logger, msg)
| 11 | |
| 12 | |
| 13 | def debug(logger, msg): |
| 14 | if 1 >= logger.GetLogLevel(): |
| 15 | info = inspect.getframeinfo(inspect.currentframe().f_back) |
| 16 | logger.Log(1, info.lineno, info.filename, info.function, msg, len(msg)) |
| 17 | |
| 18 | |
| 19 | def info(logger, msg): |
nothing calls this directly
no test coverage detected