Fix logging message capitalization
Simon Volpert
6 years ago
298 | 298 | # Check for address lock timeouts |
299 | 299 | for k in list(config['lock']): |
300 | 300 | 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)) | |
302 | 302 | unlock_address(k) |
303 | 303 | # Use the next available address |
304 | 304 | if config['addresses'] == []: |
346 | 346 | request['fiat'] = bch.fiat(fiat) |
347 | 347 | request['currency'] = currency |
348 | 348 | # 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)) | |
350 | 350 | label = urllib.parse.quote('%s ID:%s' % (config['label'], tag)) |
351 | 351 | data = 'bitcoincash:{addr}?amount={amt}&message={label}'.format(addr=address, amt=amount, label=label) |
352 | 352 | image = qrcode.make(data, box_size=7, error_correction=qrcode.constants.ERROR_CORRECT_L) |
399 | 399 | return '2' |
400 | 400 | # Update address lock |
401 | 401 | if check_lock_timeout(tag): |
402 | logging.info('payment request {} timed out'.format(tag)) | |
402 | logging.info('Payment request {} timed out'.format(tag)) | |
403 | 403 | unlock_address(tag) |
404 | 404 | return '2' |
405 | 405 | lock_address(tag) |
451 | 451 | return '0' |
452 | 452 | # All checks passed make note of the transaction |
453 | 453 | request['txid'] = txid |
454 | logging.info('payment {} detected'.format(tag)) | |
454 | logging.info('Payment {} detected'.format(tag)) | |
455 | 455 | # Double spend check |
456 | 456 | if tx.double_spend: |
457 | 457 | logging.warning('Double spend detected, waiting for confitmation') |
520 | 520 | |
521 | 521 | # Write the details of the payment to a log file |
522 | 522 | def record_payment(tag): |
523 | logging.info('payment {} received'.format(tag)) | |
523 | logging.info('Payment {} received'.format(tag)) | |
524 | 524 | request = config['lock'][tag] |
525 | 525 | log_dir = os.path.join(data_dir, 'logs') |
526 | 526 | if not os.path.isdir(log_dir): |
861 | 861 | try: |
862 | 862 | tag = parameters['id'][0] |
863 | 863 | if tag: |
864 | logging.info('payment {} cancelled'.format(tag)) | |
864 | logging.info('Payment {} cancelled'.format(tag)) | |
865 | 865 | unlock_address(tag) |
866 | 866 | except: |
867 | 867 | if sys.exc_info()[0] is KeyError: |