aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-08-27 21:00:45 +0100
committerGravatar GitHub <[email protected]>2021-08-27 21:00:45 +0100
commit100eb41ca49d3739470fa4b6c6915614f2d17619 (patch)
tree9c2fa92d05ef33c62bcd2ece9b389dbc2b00c067 /manage.py
parentAdd --noinput and --clear to collectstatic flags (diff)
Decrease verbosity in debug mode collectstatic
Co-authored-by: Matteo Bertucci <[email protected]>
Diffstat (limited to 'manage.py')
-rwxr-xr-xmanage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manage.py b/manage.py
index e4d24002..f3256ecf 100755
--- a/manage.py
+++ b/manage.py
@@ -142,7 +142,7 @@ class SiteManager:
if self.debug:
# In Production, collectstatic is ran in the Docker image
print("Collecting static files.")
- call_command("collectstatic", interactive=False, clear=True, verbosity=self.verbosity)
+ call_command("collectstatic", interactive=False, clear=True, verbosity=self.verbosity - 1)
self.set_dev_site_name()
self.create_superuser()