diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py
index e7f73fcec6..8ca170d47f 100644
--- a/InvenTree/InvenTree/settings.py
+++ b/InvenTree/InvenTree/settings.py
@@ -311,7 +311,9 @@ MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.abspath(CONFIG.get('media_root', os.path.join(BASE_DIR, 'media')))
if DEBUG:
+ print("InvenTree running in DEBUG mode")
print("MEDIA_ROOT:", MEDIA_ROOT)
+ print("STATIC_ROOT:", STATIC_ROOT)
# crispy forms use the bootstrap templates
CRISPY_TEMPLATE_PACK = 'bootstrap'
diff --git a/InvenTree/templates/base.html b/InvenTree/templates/base.html
index 94fb3bc44b..d3d214965a 100644
--- a/InvenTree/templates/base.html
+++ b/InvenTree/templates/base.html
@@ -28,6 +28,7 @@
+