Remove the word "error" from info statements.

This commit is contained in:
Bakhtiyar Neyman 2025-03-05 22:04:06 -08:00 committed by GitHub
parent bae2bd2601
commit 538036c4b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ func waitPostLogging(c *Cmd, u usage, err error, now time.Time) {
WithField("usertime_s", u.user_secs)
if err == nil {
log.Info("command exited without error")
log.Info("command ran successfully")
} else {
log.WithError(err).Info("command exited with error")
}