From 4abb23963ab5f496326116b852377a8dc1f41afa Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 14 Nov 2021 01:59:47 +0100 Subject: [PATCH] log if db not loaded --- InvenTree/plugin/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index d11e9034f8..b8fcc38579 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -32,7 +32,7 @@ class PluginAppConfig(AppConfig): self.activate_integration() except (OperationalError, ProgrammingError): # Exception if the database has not been migrated yet - pass + logger.debug('Database was not ready for loading PluginAppConfig') def collect_plugins(self): """collect integration plugins from all possible ways of loading"""