diff options
author | 2021-08-27 21:00:45 +0100 | |
---|---|---|
committer | 2021-08-27 21:00:45 +0100 | |
commit | 100eb41ca49d3739470fa4b6c6915614f2d17619 (patch) | |
tree | 9c2fa92d05ef33c62bcd2ece9b389dbc2b00c067 /manage.py | |
parent | Add --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-x | manage.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |