···268268 if err != nil && // If there is an error we need to return but:
269269 cmd.parentContext.Err() != err && // 1. Ignore the context error if the context is cancelled or exceeds the deadline (RunWithContext could return c.ctx.Err() which is Canceled or DeadlineExceeded)
270270 err.Error() != "signal: killed" { // 2. We should not pass up errors due to the program being killed
271271- log.Error("failed to run attr-check. Error: %w\nStderr: %s", err, stdErr.String())
271271+ log.Error("failed to run attr-check. Error: %v\nStderr: %s", err, stdErr.String())
272272 }
273273 }()
274274