From 5691416b7f195e18a6f18902cc41b1900525e751 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Wed, 4 Jan 2023 11:17:33 -0700 Subject: [PATCH] Can log on first time --- frigate/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/util.py b/frigate/util.py index 4ee216c7b..79fe7932f 100755 --- a/frigate/util.py +++ b/frigate/util.py @@ -814,6 +814,7 @@ def get_intel_gpu_stats() -> dict[str, str]: # timeout has a non-zero returncode when timeout is reached if p.returncode != 124: + logger.error(p.stderr) return None else: reading = "".join(p.stdout.split())