when rejecting a message, add field "msgfrom" to the logging line

This commit is contained in:
Mechiel Lukkien
2023-03-09 17:21:27 +01:00
parent b0641a1901
commit eb26e9b921
2 changed files with 7 additions and 1 deletions

View File

@ -2193,7 +2193,7 @@ func (c *conn) deliver(ctx context.Context, recvHdrFor func(string) string, msgW
}
}
log.Info("incoming message rejected", mlog.Field("reason", a.reason))
log.Info("incoming message rejected", mlog.Field("reason", a.reason), mlog.Field("msgfrom", msgFrom))
metricDelivery.WithLabelValues("reject", a.reason).Inc()
c.setSlow(true)
addError(rcptAcc, a.code, a.secode, a.userError, a.errmsg)