From 5180d86388598644e9298275b078739fcf5fea59 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 13 Jan 2024 19:27:07 +1100 Subject: [PATCH] Change log message from info to debug (#6227) - Reduces log verbosity for message which is not typically useful --- InvenTree/common/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/notifications.py b/InvenTree/common/notifications.py index 6a3da8f9e9..846e8525a4 100644 --- a/InvenTree/common/notifications.py +++ b/InvenTree/common/notifications.py @@ -439,7 +439,7 @@ def trigger_notification(obj, category=None, obj_ref='pk', **kwargs): # Set delivery flag common.models.NotificationEntry.notify(category, obj_ref_value) else: - logger.info("No possible users for notification '%s'", category) + logger.debug("No possible users for notification '%s'", category) def trigger_superuser_notification(plugin: PluginConfig, msg: str):