Skip to content

Commit

Permalink
Hide binary data
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 31, 2024
1 parent 4588015 commit 6fa7d71
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crates/store/re_rrdp_comms/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ impl std::fmt::Display for TonicStatusError {
if !status.message().is_empty() {
write!(f, ", message: {:?}", status.message())?;
}
if !status.details().is_empty() {
write!(f, ", details: {:?}", status.details())?;
}
// Binary data - not useful.
// if !status.details().is_empty() {
// write!(f, ", details: {:?}", status.details())?;
// }
if !status.metadata().is_empty() {
write!(f, ", metadata: {:?}", status.metadata())?;
}
Expand Down

0 comments on commit 6fa7d71

Please sign in to comment.