add some logging

This commit is contained in:
AAGaming
2025-07-01 15:02:27 -04:00
parent 7b8a18d02d
commit cf1b9d2884
2 changed files with 3 additions and 0 deletions
@@ -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: