Skip to content

Commit

Permalink
More logging for bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyGiorgio committed Nov 7, 2023
1 parent 3979314 commit bdf04d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mutiny-core/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,10 @@ impl<S: MutinyStorage> EventHandler<S> {
}
}
Event::HTLCIntercepted { .. } => {}
Event::BumpTransaction(event) => self.bump_tx_event_handler.handle_event(&event),
Event::BumpTransaction(event) => {
log_debug!(self.logger, "EVENT: BumpTransaction: {event:?}");
self.bump_tx_event_handler.handle_event(&event);
}
Event::InvoiceRequestFailed { payment_id } => {
// we don't support bolt 12 yet
log_warn!(self.logger, "EVENT: InvoiceRequestFailed: {payment_id}");
Expand Down

0 comments on commit bdf04d0

Please sign in to comment.