We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfa667 commit b538978Copy full SHA for b538978
cargo-rtic-scope/src/main.rs
@@ -185,7 +185,7 @@ impl diag::DiagnosableError for RTICScopeError {
185
186
impl RTICScopeError {
187
pub fn render(&self) {
188
- log::err(format!("{}", self)); // XXX only prints top-level error
+ log::err(format!("{:#?}", self)); // TODO iterator over errors instead
189
190
// print eventual hints
191
// XXX should we anyhow::Error::downcast somehow instead?
0 commit comments