Fix erroneos copy-paste log message

This commit is contained in:
Eli Ribble 2026-01-23 02:49:47 +00:00
parent f7d40c6d70
commit aa7585563b
No known key found for this signature in database

View file

@ -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")
}
}
}