Annotations for logfile maximum size revised

This commit is contained in:
phylax2020 2022-07-19 18:27:10 +02:00
parent abe87b4218
commit c85b929b75

View file

@ -297,9 +297,9 @@ class ConfigUpdate(CBPiExtension):
# check if SENSOR_LOG_MAX_BYTES exists in config # check if SENSOR_LOG_MAX_BYTES exists in config
if SENSOR_LOG_MAX_BYTES is None: if SENSOR_LOG_MAX_BYTES is None:
logger.info("INIT SENSOR_LOG_MAX_BYTES") logger.info("Init maximum size of sensor logfiles")
try: try:
await self.cbpi.config.add("SENSOR_LOG_MAX_BYTES", 100000, ConfigType.NUMBER, "Max. number of bytes in sensor logs") await self.cbpi.config.add("SENSOR_LOG_MAX_BYTES", 100000, ConfigType.NUMBER, "Max. number of bytes in sensor logfiles")
except: except:
logger.warning('Unable to update database') logger.warning('Unable to update database')