# HG changeset patch # User Augie Fackler # Date 1305583185 18000 # Node ID 436e5379d7ba13cad3438ef4ca3207235bb09717 # Parent 51f444e857347f6c27819fab686be0f31faec923 httpconnection: improved logging formatting I had to use this debugging output for the first time recently when looking for a problem, and the lack of good formatting made things difficult. diff -r 51f444e85734 -r 436e5379d7ba mercurial/httpconnection.py --- a/mercurial/httpconnection.py Tue May 17 00:46:52 2011 +0200 +++ b/mercurial/httpconnection.py Mon May 16 16:59:45 2011 -0500 @@ -107,6 +107,7 @@ _configuredlogging = False +LOGFMT = '%(levelname)s:%(name)s:%(lineno)d:%(message)s' # Subclass BOTH of these because otherwise urllib2 "helpfully" # reinserts them since it notices we don't include any subclasses of # them. @@ -122,7 +123,9 @@ _configuredlogging = True logger = logging.getLogger('mercurial.httpclient') logger.setLevel(getattr(logging, loglevel.upper())) - logger.addHandler(logging.StreamHandler()) + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter(LOGFMT)) + logger.addHandler(handler) def close_all(self): """Close and remove all connection objects being kept for reuse."""