erofs: Log mkfs command at Debug level

Change the mkfs.erofs command logging to Debug level in both
ConvertTarErofs and GenerateTarIndexAndAppendTar. This keeps
Info level quiet as intended per project conventions while
still making the commands visible for debugging.

Signed-off-by: Aadhar Agarwal <aadagarwal@microsoft.com>
This commit is contained in:
Aadhar Agarwal
2026-01-23 20:32:48 +00:00
parent 1ca5809178
commit 220108e1cf

View File

@@ -44,7 +44,7 @@ func ConvertTarErofs(ctx context.Context, r io.Reader, layerPath, uuid string, m
if err != nil {
return fmt.Errorf("erofs apply failed: %s: %w", out, err)
}
log.G(ctx).Infof("running %s %s %v", cmd.Path, cmd.Args, string(out))
log.G(ctx).Debugf("running %s %s %v", cmd.Path, cmd.Args, string(out))
return nil
}
@@ -79,10 +79,7 @@ func GenerateTarIndexAndAppendTar(ctx context.Context, r io.Reader, layerPath, u
return fmt.Errorf("tar index generation failed with command 'mkfs.erofs %s': %s: %w",
strings.Join(args, " "), out, err)
}
// Log the command execution for debugging
log.G(ctx).Tracef("Generated tar index with command: %s %s, output: %s",
cmd.Path, strings.Join(cmd.Args, " "), string(out))
log.G(ctx).Debugf("running %s %v %s", cmd.Path, cmd.Args, string(out))
// Open layerPath for appending
f, err := os.OpenFile(layerPath, os.O_APPEND|os.O_WRONLY, 0644)