in varnish.py: ``` import logging logging.basicConfig( level = logging.DEBUG, format = '%(asctime)s %(levelname)s %(message)s', ) ``` Why is it reconfiguring the logger? and why isn't it using the standard: logger = logging.getLogger(**name**) ?