From fdaca0bedf240f236eec5e16901047e72c6e4082 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sat, 1 Oct 2016 18:09:55 +0100 Subject: [PATCH] courier: Fix small typo in smtp.go's trace --- internal/courier/smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/courier/smtp.go b/internal/courier/smtp.go index 28f2206..f106a39 100644 --- a/internal/courier/smtp.go +++ b/internal/courier/smtp.go @@ -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)