From 09e588c3ff338860451ec785dd63a985600cb079 Mon Sep 17 00:00:00 2001 From: n07070 Date: Fri, 12 Jun 2026 17:20:53 +0200 Subject: [PATCH] Change Error to warning when not on a Raspberry --- src/raspberry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raspberry.py b/src/raspberry.py index 729e93a..fa8553c 100644 --- a/src/raspberry.py +++ b/src/raspberry.py @@ -68,7 +68,7 @@ class Raspberry: self.app.logger.warning( "Couldn't get sufficient hardware information from /proc/cpuinfo" ) - self.app.logger.error("Unable to determine if we are on a Raspberry Pi.") + self.app.logger.warning("Unable to determine if we are on a Raspberry Pi.") return False except IOError: self.app.logger.error("Unable to open `/proc/cpuinfo`.")