Simon Volpert minipos / 5da4fb6
Fix logging message capitalization Simon Volpert 6 years ago
1 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
298298 # Check for address lock timeouts
299299 for k in list(config['lock']):
300300 if k != '@' and check_lock_timeout(k):
301 logging.info('payment request {} timed out'.format(k))
301 logging.info('Payment request {} timed out'.format(k))
302302 unlock_address(k)
303303 # Use the next available address
304304 if config['addresses'] == []:
346346 request['fiat'] = bch.fiat(fiat)
347347 request['currency'] = currency
348348 # Generate the invoice URI and QR code
349 logging.info('new invoice {tag}: {amount} BCH ({fiat} {currency}) to {address}'.format(tag=tag, **request))
349 logging.info('New invoice {tag}: {amount} BCH ({fiat} {currency}) to {address}'.format(tag=tag, **request))
350350 label = urllib.parse.quote('%s ID:%s' % (config['label'], tag))
351351 data = 'bitcoincash:{addr}?amount={amt}&message={label}'.format(addr=address, amt=amount, label=label)
352352 image = qrcode.make(data, box_size=7, error_correction=qrcode.constants.ERROR_CORRECT_L)
399399 return '2'
400400 # Update address lock
401401 if check_lock_timeout(tag):
402 logging.info('payment request {} timed out'.format(tag))
402 logging.info('Payment request {} timed out'.format(tag))
403403 unlock_address(tag)
404404 return '2'
405405 lock_address(tag)
451451 return '0'
452452 # All checks passed make note of the transaction
453453 request['txid'] = txid
454 logging.info('payment {} detected'.format(tag))
454 logging.info('Payment {} detected'.format(tag))
455455 # Double spend check
456456 if tx.double_spend:
457457 logging.warning('Double spend detected, waiting for confitmation')
520520
521521 # Write the details of the payment to a log file
522522 def record_payment(tag):
523 logging.info('payment {} received'.format(tag))
523 logging.info('Payment {} received'.format(tag))
524524 request = config['lock'][tag]
525525 log_dir = os.path.join(data_dir, 'logs')
526526 if not os.path.isdir(log_dir):
861861 try:
862862 tag = parameters['id'][0]
863863 if tag:
864 logging.info('payment {} cancelled'.format(tag))
864 logging.info('Payment {} cancelled'.format(tag))
865865 unlock_address(tag)
866866 except:
867867 if sys.exc_info()[0] is KeyError: