Skip to content

Commit

Permalink
oups
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram committed Feb 19, 2024
1 parent 4dcd58f commit 378e2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmls/src/group/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub struct GroupId {

impl std::fmt::Debug for GroupId {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", std::str::from_utf8(self.value.as_slice()).unwrap_or_default())
write!(f, "{}", hex::encode(self.value.as_slice()))
}
}

Expand Down

0 comments on commit 378e2eb

Please sign in to comment.