(self, message)
| 706 | # and 'log_info' is for informational, warning and error logging. |
| 707 | |
| 708 | def log(self, message): |
| 709 | sys.stderr.write('log: %s\n' % str(message)) |
| 710 | |
| 711 | def log_info(self, message, log_type='info'): |
| 712 | if log_type not in self.ignore_log_types: |
no test coverage detected