(self)
| 776 | self.logger = LoggingUtil.create_log(__name__) |
| 777 | |
| 778 | def run(self): |
| 779 | self.logger.debug("Starting Thread-" + str(self.thread_id)) |
| 780 | process_data( |
| 781 | self.logger, |
| 782 | self.thread_id, |
| 783 | self.q, |
| 784 | self.port, |
| 785 | self.run_command, |
| 786 | self.zones_struct, |
| 787 | self.zgrab_collection, |
| 788 | ) |
| 789 | self.logger.debug("Exiting Thread-" + str(self.thread_id)) |
| 790 | |
| 791 | |
| 792 | def check_save_location(save_location): |
nothing calls this directly
no test coverage detected