ensure log file exists
This commit is contained in:
parent
7bc36ddf44
commit
121a79245d
@ -47,11 +47,10 @@ logger = logging.getLogger(__name__)
|
|||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
# Set up error logger
|
# Set up error logger
|
||||||
error_file_handler = RotatingFileHandler(
|
log_dir = './logs'
|
||||||
'./logs/error.log',
|
log_file = os.path.join(log_dir, 'error.log')
|
||||||
maxBytes=10*1024*1024, # 10MB
|
os.makedirs(log_dir, exist_ok=True)
|
||||||
backupCount=5
|
error_file_handler = RotatingFileHandler( log_file, maxBytes=10*1024*1024, backupCount=5)
|
||||||
)
|
|
||||||
error_file_handler.setLevel(logging.ERROR)
|
error_file_handler.setLevel(logging.ERROR)
|
||||||
error_file_handler.setFormatter(logging.Formatter('%(asctime)s [%(levelname)s] %(message)s', datefmt='%Y-%m-%d %H:%M:%S') )
|
error_file_handler.setFormatter(logging.Formatter('%(asctime)s [%(levelname)s] %(message)s', datefmt='%Y-%m-%d %H:%M:%S') )
|
||||||
error_logger = logging.getLogger('error_logger')
|
error_logger = logging.getLogger('error_logger')
|
||||||
@ -1025,7 +1024,7 @@ async def follow_move(move):
|
|||||||
signature = private_key.sign_message(message.to_bytes_versioned(raw_transaction.message))
|
signature = private_key.sign_message(message.to_bytes_versioned(raw_transaction.message))
|
||||||
signed_txn = VersionedTransaction.populate(raw_transaction.message, [signature])
|
signed_txn = VersionedTransaction.populate(raw_transaction.message, [signature])
|
||||||
opts = TxOpts(skip_preflight=False, preflight_commitment=Processed)
|
opts = TxOpts(skip_preflight=False, preflight_commitment=Processed)
|
||||||
|
|
||||||
# send the transaction
|
# send the transaction
|
||||||
result = await async_client.send_raw_transaction(txn=bytes(signed_txn), opts=opts)
|
result = await async_client.send_raw_transaction(txn=bytes(signed_txn), opts=opts)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user