Don't log autoload debug

This is just too much
This commit is contained in:
Joel Bradshaw 2022-01-25 00:37:05 -08:00
parent 9e6390662b
commit a1a3aa45f4
2 changed files with 4 additions and 0 deletions

View file

@ -8,6 +8,7 @@ from bookwyrm import settings
logger = logging.getLogger(__name__)
def download_file(url, destination):
try:
stream = urllib.request.urlopen(url)

View file

@ -163,6 +163,9 @@ LOGGING = {
"handlers": ["console", "mail_admins"],
"level": LOG_LEVEL,
},
"django.utils.autoreload": {
"level": "INFO",
},
# Add a bookwyrm-specific logger
"bookwyrm": {
"handlers": ["console"],