improve WriteComposeContentsToHost instrument fields

This commit is contained in:
mbecker20
2025-03-12 22:21:05 -04:00
parent 3890a287d1
commit d4e058a532
+9 -1
View File
@@ -185,7 +185,15 @@ impl Resolve<super::Args> for GetComposeContentsOnHost {
//
impl Resolve<super::Args> for WriteComposeContentsToHost {
#[instrument(name = "WriteComposeContentsToHost")]
#[instrument(
name = "WriteComposeContentsToHost",
skip_all,
fields(
stack = &self.name,
run_directory = &self.run_directory,
file_path = &self.file_path,
)
)]
async fn resolve(self, _: &super::Args) -> serror::Result<Log> {
let WriteComposeContentsToHost {
name,