Fixed error trace formatting the target with debug output.

This commit is contained in:
Filipe Rodrigues 2023-07-10 10:39:02 +01:00
parent b90edfa509
commit 71eb625fb7

View File

@ -213,7 +213,7 @@ async fn build_target<'s, T: BuildableTargetInner<'s> + std::fmt::Display + std:
println!("{target}");
};
},
Err(err) => tracing::error!(?target, err=?anyhow::Error::new(err), "Unable to build target"),
Err(err) => tracing::error!(%target, err=?anyhow::Error::new(err), "Unable to build target"),
}
}