From ccbab5920728d3f89d9f26e001bf80d919eedb61 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 14 Jan 2023 13:07:42 +0100 Subject: [PATCH] Fix log direction string --- smtp/smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtp/smtp.go b/smtp/smtp.go index 7bdae59..21f2bc3 100644 --- a/smtp/smtp.go +++ b/smtp/smtp.go @@ -444,7 +444,7 @@ func (c *Client) SetDebugLog(v bool) { // debugLog checks if the debug flag is set and if so logs the provided message to StdErr func (c *Client) debugLog(d logDirection, f string, a ...interface{}) { if c.debug { - p := "S <-- C:" + p := "C <-- S:" if d == logOut { p = "C --> S:" }