Island: Modify skipping propagation log message

This commit is contained in:
Mike Salvatore 2022-06-22 10:44:02 -04:00
parent 8d2078048c
commit 1199c72f0d
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class AutomatedMaster(IMaster):
if should_propagate(self._control_channel.get_config(), self._current_depth): if should_propagate(self._control_channel.get_config(), self._current_depth):
self._propagator.propagate(config["propagation"], current_depth, self._stop) self._propagator.propagate(config["propagation"], current_depth, self._stop)
else: else:
logger.info("Skipping propagation, maximum depth reached") logger.info("Skipping propagation: maximum depth reached")
payload_thread = create_daemon_thread( payload_thread = create_daemon_thread(
target=self._run_plugins, target=self._run_plugins,