From f09528a7790b5d4fc4aaa75092c41cdc8fc40167 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 14 Sep 2023 16:34:03 -0600 Subject: [PATCH] Add stderr output --- frigate/util/services.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/util/services.py b/frigate/util/services.py index f85f11b70..2ffddcacf 100644 --- a/frigate/util/services.py +++ b/frigate/util/services.py @@ -174,6 +174,7 @@ def get_bandwidth_stats(config) -> dict[str, dict]: ) if p.returncode != 0: + logger.error(f"Error getting network stats :: {p.stderr}") return usages else: lines = p.stdout.split("\n")