From b8292cc5ba2cd01a16db5a92026d35452fd9e2c9 Mon Sep 17 00:00:00 2001 From: "Felipe M." Date: Sun, 24 Nov 2024 12:10:14 +0100 Subject: [PATCH] chore: incorrect log field --- cmd/sendmail/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sendmail/main.go b/cmd/sendmail/main.go index 5d7dc84..df894b3 100644 --- a/cmd/sendmail/main.go +++ b/cmd/sendmail/main.go @@ -52,7 +52,7 @@ func (a *plainClient) Start(si *smtp.ServerInfo) (mech string, ir []byte, err er } func (a *plainClient) Next(challenge []byte, b bool) (response []byte, err error) { - slog.Info("Next: %v", challenge) + slog.Info("Next: %v", slog.String("challenge", string(challenge))) return nil, nil }