Skip to content

Commit

Permalink
chore: stringify events to make them readable
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed Feb 14, 2025
1 parent 9cb99e7 commit bdc4237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion omni-relayer/src/utils/near.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pub async fn handle_streamer_message(
.collect::<Vec<_>>();

for log in nep_locker_event_logs {
info!("Received OmniBridgeEvent: {:?}", log);
info!("Received OmniBridgeEvent: {}", log.to_log_string());

match log {
OmniBridgeEvent::InitTransferEvent {
Expand Down
2 changes: 1 addition & 1 deletion omni-relayer/src/workers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ async fn process_near_transfer_event(
);
};

info!("Trying to process InitTransferEvent/FinTransferEvent/UpdateFeeEvent",);
info!("Trying to process InitTransferEvent/FinTransferEvent/UpdateFeeEvent");

#[cfg(not(feature = "disable_fee_check"))]
match utils::fee::is_fee_sufficient(
Expand Down

0 comments on commit bdc4237

Please sign in to comment.