Change Error to warning when not on a Raspberry

This commit is contained in:
n07070
2026-06-12 17:20:53 +02:00
parent 0699775d35
commit 09e588c3ff

View File

@@ -68,7 +68,7 @@ class Raspberry:
self.app.logger.warning( self.app.logger.warning(
"Couldn't get sufficient hardware information from /proc/cpuinfo" "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 return False
except IOError: except IOError:
self.app.logger.error("Unable to open `/proc/cpuinfo`.") self.app.logger.error("Unable to open `/proc/cpuinfo`.")