This commit is contained in:
Maxim Devaev
2022-06-19 20:42:52 +03:00
parent 4aa7a21b55
commit 0edf854832
2 changed files with 6 additions and 1 deletions

View File

@@ -38,7 +38,7 @@ async def remount(name: str, base_cmd: List[str], rw: bool) -> bool:
part.format(mode=mode)
for part in base_cmd
]
logger.info("Remounting %s storage to %s: %s ...", name, mode.upper(), cmd)
logger.info("Remounting %s storage to %s: %s ...", name, mode.upper(), tools.cmdfmt(cmd))
try:
proc = await aioproc.log_process(cmd, logger)
if proc.returncode != 0: