Don't log intel gpu top errors

This commit is contained in:
Nick Mowen 2023-01-04 11:11:46 -07:00
parent ceab294840
commit 8a5c80f4f1

View File

@ -814,7 +814,6 @@ def get_intel_gpu_stats() -> dict[str, str]:
# timeout has a non-zero returncode when timeout is reached # timeout has a non-zero returncode when timeout is reached
if p.returncode != 124: if p.returncode != 124:
logger.error(p.stderr)
return None return None
else: else:
reading = "".join(p.stdout.split()) reading = "".join(p.stdout.split())