Commit 8eeedd9 1 parent 3f4bf58 commit 8eeedd9 Copy full SHA for 8eeedd9
File tree 2 files changed +3
-3
lines changed
crates/meroctl/src/cli/context
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ impl Report for InviteToContextResponse {
36
36
fn report ( & self ) {
37
37
match self . data {
38
38
Some ( ref payload) => {
39
- println ! ( "{:? }" , payload)
39
+ println ! ( "Invitation payload: { }" , payload)
40
40
}
41
41
None => println ! ( "No invitation payload" ) ,
42
42
}
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ impl Report for JoinContextResponse {
28
28
fn report ( & self ) {
29
29
match self . data {
30
30
Some ( ref payload) => {
31
- print ! ( "context_id {}" , payload. context_id) ;
32
- print ! ( "member_public_key: {}" , payload. member_public_key) ;
31
+ println ! ( "context_id {}" , payload. context_id) ;
32
+ println ! ( "member_public_key: {}" , payload. member_public_key) ;
33
33
}
34
34
None => todo ! ( ) ,
35
35
}
You can’t perform that action at this time.
0 commit comments