From 87d25d2ac8301684ab37cf6513a447029aa7a36a Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 28 Sep 2022 15:15:32 -0400 Subject: [PATCH] Agent: Remove disused send_log() from ControlClient --- monkey/infection_monkey/control.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/monkey/infection_monkey/control.py b/monkey/infection_monkey/control.py index 5f3c5372a..887ae4221 100644 --- a/monkey/infection_monkey/control.py +++ b/monkey/infection_monkey/control.py @@ -13,7 +13,6 @@ from infection_monkey.config import GUID from infection_monkey.island_api_client import IIslandAPIClient from infection_monkey.network.info import get_host_subnets from infection_monkey.utils import agent_process -from infection_monkey.utils.ids import get_agent_id disable_warnings() # noqa DUO131 @@ -69,14 +68,6 @@ class ControlClient: except Exception as exc: logger.warning(f"Error connecting to control server {self.server_address}: {exc}") - def send_log(self, log): - try: - monkey_guid = get_agent_id() - log_contents = json.dumps(log) - self._island_api_client.send_log(monkey_guid, log_contents) - except Exception as exc: - logger.warning(f"Error connecting to control server {self.server_address}: {exc}") - def get_pba_file(self, filename): try: return self._island_api_client.get_pba_file(filename)