From 6d2e9365c0fb1bea804743245d79a5b97e3af108 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Wed, 21 Feb 2024 01:08:25 -0500 Subject: more major websocket progress --- backend/decky_loader/localplatform/localplatformlinux.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'backend/decky_loader/localplatform/localplatformlinux.py') diff --git a/backend/decky_loader/localplatform/localplatformlinux.py b/backend/decky_loader/localplatform/localplatformlinux.py index 4eb112ee..2674e9bc 100644 --- a/backend/decky_loader/localplatform/localplatformlinux.py +++ b/backend/decky_loader/localplatform/localplatformlinux.py @@ -1,6 +1,6 @@ import os, pwd, grp, sys, logging from subprocess import call, run, DEVNULL, PIPE, STDOUT -from ..customtypes import UserType +from ..enums import UserType logger = logging.getLogger("localplatform") @@ -157,6 +157,7 @@ async def service_start(service_name : str) -> bool: return res.returncode == 0 async def restart_webhelper() -> bool: + logger.info("Restarting steamwebhelper") res = run(["killall", "-s", "SIGTERM", "steamwebhelper"], stdout=DEVNULL, stderr=DEVNULL) return res.returncode == 0 -- cgit v1.2.3