summaryrefslogtreecommitdiff
path: root/kvmd/helpers/otgmsd/remount/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/helpers/otgmsd/remount/__init__.py')
-rw-r--r--kvmd/helpers/otgmsd/remount/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/helpers/otgmsd/remount/__init__.py b/kvmd/helpers/otgmsd/remount/__init__.py
index 667e770e..4a83980e 100644
--- a/kvmd/helpers/otgmsd/remount/__init__.py
+++ b/kvmd/helpers/otgmsd/remount/__init__.py
@@ -74,7 +74,7 @@ def _remount(path: str, rw: bool) -> None:
def _mkdir(path: str) -> None:
if not os.path.exists(path):
- _log(f"MKDIR {path} ...")
+ _log(f"MKDIR --- {path}")
try:
os.mkdir(path)
except Exception as err:
@@ -82,7 +82,7 @@ def _mkdir(path: str) -> None:
def _chown(path: str, user: str) -> None:
- _log(f"CHOWN {user} {path} ...")
+ _log(f"CHOWN --- {user} - {path}")
try:
shutil.chown(path, user)
except Exception as err: