summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-10-09 11:58:19 +0300
committerDevaev Maxim <[email protected]>2020-10-09 11:58:19 +0300
commitcf5bc84872d4e865bdf96198b40fda47f7f285a2 (patch)
treee37c97146bcdd779b84227a3bc9fa5dc557785a7 /kvmd/plugins/msd
parent5bfde6ceae5af9c47c7a86a6ee1d9fb180b39b54 (diff)
refactoring
Diffstat (limited to 'kvmd/plugins/msd')
-rw-r--r--kvmd/plugins/msd/otg/helpers.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/kvmd/plugins/msd/otg/helpers.py b/kvmd/plugins/msd/otg/helpers.py
index df004c6d..a3c60e02 100644
--- a/kvmd/plugins/msd/otg/helpers.py
+++ b/kvmd/plugins/msd/otg/helpers.py
@@ -59,13 +59,6 @@ async def unlock_drive(base_cmd: List[str]) -> None:
async def _run_helper(cmd: List[str]) -> None:
logger = get_logger(0)
logger.info("Executing helper %s ...", cmd)
-
- (proc, stdout) = await aioproc.read_process(cmd)
-
- if stdout:
- log = (logger.info if proc.returncode == 0 else logger.error)
- for line in stdout.split("\n"):
- log("Console: %s", line)
-
+ proc = await aioproc.log_process(cmd, logger)
if proc.returncode != 0:
raise MsdError(f"Error while helper execution: pid={proc.pid}; retcode={proc.returncode}")