Skip to content

Commit

Permalink
log out message instead of ID (#2934)
Browse files Browse the repository at this point in the history
### Description

<!--
What's included in this PR?
-->

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
nambrot authored Nov 17, 2023
1 parent 7c3bd9d commit da1fde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/cli/src/send/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async function executeDelivery({
txReceipt = await multiProvider.handleTx(origin, messageTx);
const message = core.getDispatchedMessages(txReceipt)[0];
logBlue(`Sent message from ${origin} to ${recipient} on ${destination}.`);
logBlue(`Message ID: ${message.id}`);
logBlue(`Message: ${JSON.stringify(message)}`);
} catch (e) {
errorRed(
`Encountered error sending message from ${origin} to ${destination}`,
Expand Down

0 comments on commit da1fde6

Please sign in to comment.