Log NTFY errors

This commit is contained in:
Mark Veidemanis 2023-01-12 19:00:06 +00:00
parent 092d4c64ff
commit dd4b2ddd3a
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 8 additions and 5 deletions

View File

@ -18,11 +18,14 @@ def raw_sendmsg(msg, title=None, priority=None, tags=None, url=None, topic=None)
headers["Priority"] = priority
if tags:
headers["Tags"] = tags
requests.post(
f"{url}/{topic}",
data=msg,
headers=headers,
)
try:
requests.post(
f"{url}/{topic}",
data=msg,
headers=headers,
)
except requests.exceptions.ConnectionError as e:
log.error(f"Error sending notification: {e}")
# Sendmsg helper to send a message to a user's notification settings