If the current verbosity level is of greater than or equal to 'level' print 'msg' to stdout.
(self, msg, level=1)
| 176 | % self.__class__) |
| 177 | |
| 178 | def announce(self, msg, level=1): |
| 179 | """If the current verbosity level is of greater than or equal to |
| 180 | 'level' print 'msg' to stdout. |
| 181 | """ |
| 182 | log.log(level, msg) |
| 183 | |
| 184 | def debug_print(self, msg): |
| 185 | """Print 'msg' to stdout if the global DEBUG (taken from the |
no test coverage detected