Skip to content

Commit

Permalink
adjust some logs (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsxyl authored Aug 2, 2024
1 parent 9b737e5 commit 4b74551
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions route/icp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async fn process_tickets() {
mutate_state(|s| s.next_ticket_seq = next_seq)
}
Err(err) => {
log::error!("[process tickets] failed to query tickets, err: {}", err);
log::error!("[process tickets] failed to query tickets, err: {err}");
}
}
}
Expand Down Expand Up @@ -139,7 +139,7 @@ async fn process_directives() {
}
Directive::UpdateFee(fee) => {
mutate_state(|s| audit::update_fee(s, fee.clone()));
log::info!("[process_directives] success to update fee, fee: {}", fee);
log::info!("[process_directives] success to update fee, fee: {fee}");
}
}
}
Expand Down

0 comments on commit 4b74551

Please sign in to comment.