Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/store/re_mcap/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub enum Error {
#[error("Channel {0} does not define a schema")]
NoSchema(String),

#[error("Invalid schema {schema}: {source}")]
#[error("Invalid schema {schema}: {source:#}")]
InvalidSchema {
schema: String,
source: anyhow::Error,
Expand All @@ -30,7 +30,7 @@ pub enum Error {
#[error(transparent)]
Chunk(#[from] re_chunk::ChunkError),

#[error(transparent)]
#[error("{0:#}")]
Other(#[from] anyhow::Error),
}

Expand Down
2 changes: 1 addition & 1 deletion crates/store/re_mcap/src/parsers/cdr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ pub enum CdrError {
#[error("Message is not encoded using a CDR representation: `{0:?}`")]
UnsupportedRepresentation(RepresentationIdentifier),

#[error("{0}")]
#[error("{0:#}")]
Other(#[from] anyhow::Error),
}
2 changes: 1 addition & 1 deletion crates/store/re_parquet/src/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub enum ParquetError {
#[error(transparent)]
Arrow(#[from] arrow::error::ArrowError),

#[error(transparent)]
#[error("{0:#}")]
Other(#[from] anyhow::Error),
}

Expand Down
2 changes: 1 addition & 1 deletion crates/store/re_server/src/store/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub enum Error {
#[error(transparent)]
LanceError(#[from] lance::Error),

#[error("Error loading RRD: {0}")]
#[error("Error loading RRD: {0:#}")]
RrdLoadingError(anyhow::Error),

#[error("Failed to encode chunk key: {0}")]
Expand Down
2 changes: 1 addition & 1 deletion crates/top/rerun/src/commands/entrypoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ where
.downcast_ref::<std::io::Error>()
.is_some_and(|io_err| io_err.kind() == std::io::ErrorKind::AddrInUse) =>
{
re_log::warn!("{err}");
re_log::warn!("{err:#}");
Ok(1)
}

Expand Down
Loading