# HG changeset patch # User Augie Fackler # Date 1305119271 18000 # Node ID 84256ba2fbf7e12b213d5ab4b93190616cbcdeed # Parent 9adbb5ef096418e8b37cc10b011a9648ea5fd380 httpconnection: fix debug logging option for httpclient diff -r 9adbb5ef0964 -r 84256ba2fbf7 mercurial/httpconnection.py --- a/mercurial/httpconnection.py Wed May 11 08:00:48 2011 -0500 +++ b/mercurial/httpconnection.py Wed May 11 08:07:51 2011 -0500 @@ -120,7 +120,7 @@ loglevel = ui.config('ui', 'http2debuglevel', default=None) if loglevel and not _configuredlogging: _configuredlogging = True - logger = logging.getLogger('mercurial.http') + logger = logging.getLogger('mercurial.httpclient') logger.setLevel(getattr(logging, loglevel.upper())) logger.addHandler(logging.StreamHandler())