From 4d00c471e1cd5469c6077da6f4f90db989e901d9 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 24 May 2023 15:32:49 +1000 Subject: [PATCH] Change debug message for plugin events (#4884) - Change from .info to .debug for less verbosity --- InvenTree/plugin/base/event/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/base/event/events.py b/InvenTree/plugin/base/event/events.py index 1301463ffc..ceb5e356e8 100644 --- a/InvenTree/plugin/base/event/events.py +++ b/InvenTree/plugin/base/event/events.py @@ -79,7 +79,6 @@ def process_event(plugin_slug, event, *args, **kwargs): This function is run by the background worker process. This function may queue multiple functions to be handled by the background worker. """ - logger.info(f"Plugin '{plugin_slug}' is processing triggered event '{event}'") plugin = registry.plugins.get(plugin_slug, None) @@ -88,6 +87,7 @@ def process_event(plugin_slug, event, *args, **kwargs): return plugin.process_event(event, *args, **kwargs) + logger.debug(f"Plugin '{plugin_slug}' is processing triggered event '{event}'") def allow_table_event(table_name):