1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-23 15:37:01 +00:00

courier: Fix small typo in smtp.go's trace

This commit is contained in:
Alberto Bertogli
2016-10-01 18:09:55 +01:00
parent 2f2d1f2dbd
commit fdaca0bedf

View File

@@ -36,7 +36,7 @@ type SMTP struct {
}
func (s *SMTP) Deliver(from string, to string, data []byte) (error, bool) {
tr := trace.New("goingSMTP", "Deliver")
tr := trace.New("SMTP", "Deliver")
defer tr.Finish()
tr.LazyPrintf("%s -> %s", from, to)