From 8b90b4c9effa380e51f9a83387a19e20f2629346 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 2 Feb 2026 06:59:28 +0000 Subject: [PATCH] Fix error message for text job --- platform/text/job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/text/job.go b/platform/text/job.go index 4d2bfdf3..afbfc1ef 100644 --- a/platform/text/job.go +++ b/platform/text/job.go @@ -27,7 +27,7 @@ func Handle(ctx context.Context, job Job) { err = sendReportSubscription(ctx, job) } if err != nil { - log.Error().Err(err).Str("dest", job.destination()).Str("type", string(job.messageTypeName())).Msg("Error processing email") + log.Error().Err(err).Str("dest", job.destination()).Str("type", string(job.messageTypeName())).Msg("Error processing text") return } /*