Make a logger statement more explicit.

feature/documentation-builds-html
Isis Lovecruft 2013-04-10 21:58:56 +00:00
parent 0ae817e3b8
commit 58de4c6c21
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -645,7 +645,7 @@ def _sanitise_list(arg_list):
def _threaded_copy_data(instream, outstream):
wr = threading.Thread(target=_copy_data, args=(instream, outstream))
wr.setDaemon(True)
logger.debug('data copier: %r, %r, %r', wr, instream, outstream)
logger.debug('_threaded_copy_data(): %r, %r, %r', wr, instream, outstream)
wr.start()
return wr