diff --git a/eden/mononoke/repo_attributes/commit_graph/commit_graph/src/writer.rs b/eden/mononoke/repo_attributes/commit_graph/commit_graph/src/writer.rs index aa26169333951..9c4d2c851ff10 100644 --- a/eden/mononoke/repo_attributes/commit_graph/commit_graph/src/writer.rs +++ b/eden/mononoke/repo_attributes/commit_graph/commit_graph/src/writer.rs @@ -147,7 +147,7 @@ impl CommitGraphWriter for LoggingCommitGraphWriter { match self.inner_writer.add(ctx, cs_id, parents).try_timed().await { Err(err) => { - scuba.add("error", err.to_string()); + scuba.add("error", format!("{:#}", err)); scuba.log_with_msg("Insertion failed", None); Err(err)