Add parameter for Notify on Error

This commit is contained in:
avollkopf 2022-12-02 20:05:30 +01:00
parent 7e0eb0f30d
commit 9f655c9393
3 changed files with 17 additions and 3 deletions

View file

@ -1,3 +1,3 @@
__version__ = "4.0.7.rc1"
__version__ = "4.0.7.rc2"
__codename__ = "November Rain"

View file

@ -1,6 +1,7 @@
import asyncio
from email import message
from cbpi.api.dataclasses import NotificationType
from cbpi.api import *
import logging
import shortuuid
class NotificationController:
@ -11,6 +12,8 @@ class NotificationController:
'''
self.cbpi = cbpi
self.logger = logging.getLogger(__name__)
NOTIFY_ON_ERROR = self.cbpi.config.get("NOTIFY_ON_ERROR", "No")
if NOTIFY_ON_ERROR == "Yes":
logging.root.addFilter(self.notify_log_event)
self.callback_cache = {}
self.listener = {}

View file

@ -50,6 +50,7 @@ class ConfigUpdate(CBPiExtension):
SENSOR_LOG_BACKUP_COUNT = self.cbpi.config.get("SENSOR_LOG_BACKUP_COUNT", None)
SENSOR_LOG_MAX_BYTES = self.cbpi.config.get("SENSOR_LOG_MAX_BYTES", None)
slow_pipe_animation = self.cbpi.config.get("slow_pipe_animation", None)
NOTIFY_ON_ERROR = self.cbpi.config.get("NOTIFY_ON_ERROR", None)
if boil_temp is None:
logger.info("INIT Boil Temp Setting")
@ -314,6 +315,16 @@ class ConfigUpdate(CBPiExtension):
except:
logger.warning('Unable to update config')
## Check if NOTIFY_ON_ERROR is in config
if NOTIFY_ON_ERROR is None:
logger.info("INIT NOTIFY_ON_ERROR")
try:
await self.cbpi.config.add("NOTIFY_ON_ERROR", "No", ConfigType.SELECT, "Send Notification on Logging Error",
[{"label": "Yes", "value": "Yes"},
{"label": "No", "value": "No"}])
except:
logger.warning('Unable to update config')
def setup(cbpi):
cbpi.plugin.register("ConfigUpdate", ConfigUpdate)
pass