From aa7585563b5373e79f4f5ca3d3acaf8edddebbe2 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 23 Jan 2026 02:49:47 +0000 Subject: [PATCH] Fix erroneos copy-paste log message --- background/comms.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/comms.go b/background/comms.go index 2992a1fd..e5e81390 100644 --- a/background/comms.go +++ b/background/comms.go @@ -72,7 +72,7 @@ func startWorkerEmail(ctx context.Context, channel chan jobEmail) { case job := <-channel: err := jobProcessEmail(job) if err != nil { - log.Error().Err(err).Str("dest", job.Destination).Str("type", string(job.Type)).Msg("Error processing audio file") + log.Error().Err(err).Str("dest", job.Destination).Str("type", string(job.Type)).Msg("Error processing email") } } }