Skip to content

Commit

Permalink
feat: insufficient log message (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
danut13 authored Aug 23, 2024
1 parent 23ec8dc commit 8348dee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pantos/servicenode/business/bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ def get_cross_blockchain_bids(
"""
try:
_logger.info('Reading cross-blockchain bids from database')
_logger.info(
'reading cross-blockchain bids from database', extra={
'source_blockchain': Blockchain(source_blockchain_id),
'destination_blockchain': Blockchain(
destination_blockchain_id)
})
raw_bids = database_access.read_cross_blockchain_bids(
source_blockchain_id, destination_blockchain_id)
bids = []
Expand Down

0 comments on commit 8348dee

Please sign in to comment.