Changeset 661e857


Ignore:
Timestamp:
Jan 31, 2013 3:40:03 PM (11 years ago)
Author:
Ted Faber <faber@…>
Branches:
master
Children:
5bd8f1b
Parents:
dcac546
Message:

Remove excessive debug logging (yep it exists)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/util.py

    rdcac546 r661e857  
    224224            conn.putrequest('GET', po.path)
    225225            conn.endheaders()
    226             if log:
    227                 log.debug('Connecting')
    228226            response = conn.getresponse()
    229             if log:
    230                 log.debug('Connected')
    231227
    232228            lf = open("%s/%s" % (destdir, fn), "w")
    233             if log:
    234                 log.debug('initial read')
    235229            buf = response.read(4096)
    236230            while buf:
    237231                lf.write(buf)
    238                 if log:
    239                     log.debug('loop read')
    240232                buf = response.read(4096)
    241233            lf.close()
Note: See TracChangeset for help on using the changeset viewer.