diff --git a/common/log/access.go b/common/log/access.go index 22b84cf6..204212dc 100644 --- a/common/log/access.go +++ b/common/log/access.go @@ -31,6 +31,8 @@ type AccessMessage struct { func (m *AccessMessage) String() string { builder := strings.Builder{} + builder.WriteString("from") + builder.WriteByte(' ') builder.WriteString(serial.ToString(m.From)) builder.WriteByte(' ') builder.WriteString(string(m.Status))