# HG changeset patch # User Brian Neal # Date 1445741609 18000 # Node ID 7db9037915c46f33fdb034ad8077ee8dd9234bd1 # Parent ef1558941bc933bd8e9f278a9ec95566d0b387aa Logging tweaks to ssl_images. diff -r ef1558941bc9 -r 7db9037915c4 core/management/commands/ssl_images.py --- a/core/management/commands/ssl_images.py Sat Oct 24 21:29:07 2015 -0500 +++ b/core/management/commands/ssl_images.py Sat Oct 24 21:53:29 2015 -0500 @@ -75,6 +75,11 @@ requests_log.propagate = True requests_log.addHandler(handler) + dl_log = logging.getLogger("core.download") + dl_log.setLevel(logging.INFO) + dl_log.propagate = True + dl_log.addHandler(handler) + def resize_image(img_path): """Resizes the image found at img_path if necessary.