diff --git a/jmclient/jmclient/yieldgenerator.py b/jmclient/jmclient/yieldgenerator.py index cc74852..347d67f 100644 --- a/jmclient/jmclient/yieldgenerator.py +++ b/jmclient/jmclient/yieldgenerator.py @@ -104,7 +104,7 @@ class YieldGeneratorBasic(YieldGenerator): jlog.debug('mix depths that have enough = ' + str(filtered_mix_balance)) filtered_mix_balance = sorted(filtered_mix_balance, key=lambda x: x[0]) mixdepth = filtered_mix_balance[0][0] - jlog.info('filling offer, mixdepth=' + str(mixdepth)) + jlog.info('filling offer, mixdepth=' + str(mixdepth) + ', amount=' + str(amount)) # mixdepth is the chosen depth we'll be spending from cj_addr = self.wallet.get_internal_addr( diff --git a/jmdaemon/jmdaemon/message_channel.py b/jmdaemon/jmdaemon/message_channel.py index 9959a6f..424f0db 100644 --- a/jmdaemon/jmdaemon/message_channel.py +++ b/jmdaemon/jmdaemon/message_channel.py @@ -784,8 +784,9 @@ class MessageChannel(object): minsize, maxsize, txfee, cjfee) except IndexError as e: log.debug(e) - log.debug('index error parsing chunks, possibly malformed' - 'offer by other party. No user action required.') + log.debug('index error parsing chunks, possibly malformed ' + 'offer by other party. No user action required. ' + 'Triggered by: ' + str(nick)) # TODO what now? just ignore iirc finally: return True