From 65ff226b90617e554d2c36472e7e1dae2eab973a Mon Sep 17 00:00:00 2001
From: Matthias <matthias.mair@oewf.org>
Date: Mon, 15 Nov 2021 01:01:01 +0100
Subject: [PATCH] remove debug messages

---
 InvenTree/plugin/apps.py   | 1 -
 InvenTree/plugin/models.py | 2 --
 2 files changed, 3 deletions(-)

diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py
index d10f41a808..e60de35833 100644
--- a/InvenTree/plugin/apps.py
+++ b/InvenTree/plugin/apps.py
@@ -229,7 +229,6 @@ class PluginAppConfig(AppConfig):
                 elif a.app_name == 'plugin':
                     integ_urls = get_integration_urls()
                     urlpatterns[index] = url(f'^{settings.PLUGIN_URL}/', include((integ_urls, 'plugin')))
-        print('done')
 
     def _reload_apps(self, populate: bool = False):
         if populate:
diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py
index 06606fd5d6..4aebcd6082 100644
--- a/InvenTree/plugin/models.py
+++ b/InvenTree/plugin/models.py
@@ -58,11 +58,9 @@ class PluginConfig(models.Model):
         app = apps.get_app_config('plugin')
 
         if self.active is False and self.__org_active is True:
-            print('deactivated')
             app.reload_plugins()
 
         elif self.active is True and self.__org_active is False:
-            print('activated')
             app.reload_plugins()
 
         return ret