summaryrefslogtreecommitdiff
path: root/backend/decky_loader/localplatform
diff options
context:
space:
mode:
Diffstat (limited to 'backend/decky_loader/localplatform')
-rw-r--r--backend/decky_loader/localplatform/localplatformlinux.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/decky_loader/localplatform/localplatformlinux.py b/backend/decky_loader/localplatform/localplatformlinux.py
index 63a07292..7af2b96e 100644
--- a/backend/decky_loader/localplatform/localplatformlinux.py
+++ b/backend/decky_loader/localplatform/localplatformlinux.py
@@ -146,6 +146,8 @@ async def service_active(service_name : str) -> bool:
async def service_restart(service_name : str, block : bool = True) -> bool:
await run(["systemctl", "daemon-reload"])
+ logger.info("Systemd reload done.")
+
cmd = ["systemctl", "restart", service_name]
if not block: