Make a logger statement more explicit.
parent
0ae817e3b8
commit
58de4c6c21
2
gnupg.py
2
gnupg.py
|
@ -645,7 +645,7 @@ def _sanitise_list(arg_list):
|
||||||
def _threaded_copy_data(instream, outstream):
|
def _threaded_copy_data(instream, outstream):
|
||||||
wr = threading.Thread(target=_copy_data, args=(instream, outstream))
|
wr = threading.Thread(target=_copy_data, args=(instream, outstream))
|
||||||
wr.setDaemon(True)
|
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()
|
wr.start()
|
||||||
return wr
|
return wr
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue