(self, level, str, *args)
| 136 | self.processed_paths = [] # Used in debugging only |
| 137 | |
| 138 | def msg(self, level, str, *args): |
| 139 | if level <= self.debug: |
| 140 | for i in range(self.indent): |
| 141 | print(" ", end=' ') |
| 142 | print(str, end=' ') |
| 143 | for arg in args: |
| 144 | print(repr(arg), end=' ') |
| 145 | print() |
| 146 | |
| 147 | def msgin(self, *args): |
| 148 | level = args[0] |
no outgoing calls
no test coverage detected