From 95051ab8d2280fc8530062f27e978774c90de809 Mon Sep 17 00:00:00 2001 From: Aarron Lee Date: Sat, 28 Sep 2024 17:26:47 -0400 Subject: [PATCH] add logs for intel --- py_modules/device_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py_modules/device_utils.py b/py_modules/device_utils.py index 8b8a0ed..45cda24 100644 --- a/py_modules/device_utils.py +++ b/py_modules/device_utils.py @@ -34,6 +34,7 @@ def get_cpu_manufacturer(): if match: vendor_id = match.group(1) CPU_VENDOR = vendor_id.strip() + decky_plugin.logger.info(f"cpu vendor: {CPU_VENDOR}") else: decky_plugin.logger.error("No CPU vendor_id found") except Exception as e: