From b262be8d1d673ef21cc551174fb610ed5df8a7ea Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 15 Dec 2021 11:16:14 -0500 Subject: [PATCH] Agent: Change log level of "stop signal" message to info --- monkey/infection_monkey/master/automated_master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/master/automated_master.py b/monkey/infection_monkey/master/automated_master.py index 8342b4b7c..e43ad471f 100644 --- a/monkey/infection_monkey/master/automated_master.py +++ b/monkey/infection_monkey/master/automated_master.py @@ -111,7 +111,7 @@ class AutomatedMaster(IMaster): self._control_channel.should_agent_stop, CHECK_FOR_STOP_AGENT_COUNT ) if stop: - logger.debug('Received the "stop" signal from the Island') + logger.info('Received the "stop" signal from the Island') self._stop.set() except IslandCommunicationError as e: logger.error(f"An error occurred while trying to check for agent stop: {e}")