agent: Remove unnecessary log

This commit is contained in:
Ilija Lazoroski 2021-06-18 12:03:39 +02:00 committed by Ilija Lazoroski
parent b93be212f4
commit 5c5d96f79d
1 changed files with 0 additions and 3 deletions

View File

@ -145,7 +145,6 @@ class MonkeyDrops(object):
)
if OperatingSystem.Windows == SystemInfoCollector.get_os():
monkey_commandline = get_monkey_commandline_windows(
self._config["destination_path"], monkey_options
)
@ -165,8 +164,6 @@ class MonkeyDrops(object):
monkey_commandline = get_monkey_commandline_linux(dest_path, monkey_options)
LOG.info("Commands of monkey cmdline_split %s", monkey_commandline)
monkey_process = subprocess.Popen(
monkey_commandline,
stdin=subprocess.PIPE,