Skip to content

Commit

Permalink
Add unit to log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-iov committed Oct 22, 2024
1 parent 7281202 commit 6e9194b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rskj-core/src/main/java/co/rsk/peg/BridgeSupport.java
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ private void refundAndEmitRejectEvent(
RejectedPegoutReason reason
) {
logger.trace(
"[refundAndEmitRejectEvent] Executing a refund of {} to {}. Reason: {}",
"[refundAndEmitRejectEvent] Executing a refund of {} weis to {}. Reason: {}",
releaseRequestedValueInWeis,
senderAddress,
reason
Expand Down Expand Up @@ -917,7 +917,7 @@ private void requestRelease(Address destinationAddress, co.rsk.core.Coin release

if (optionalRejectedPegoutReason.isPresent()) {
logger.warn(
"[requestRelease] releaseBtc ignored. To {}. Tx {}. Value {}. Reason: {}",
"[requestRelease] releaseBtc ignored. To {}. Tx {}. Value {} weis. Reason: {}",
destinationAddress,
rskTx,
releaseRequestedValueInWeis,
Expand Down Expand Up @@ -946,7 +946,7 @@ private void requestRelease(Address destinationAddress, co.rsk.core.Coin release
);
}
logger.info(
"[requestRelease] releaseBtc successful to {}. Tx {}. Value {}.",
"[requestRelease] releaseBtc successful to {}. Tx {}. Value {} weis.",
destinationAddress,
rskTx,
releaseRequestedValueInWeis
Expand Down

0 comments on commit 6e9194b

Please sign in to comment.