Fix error message for text job

This commit is contained in:
Eli Ribble 2026-02-02 06:59:28 +00:00
parent b96ddf7162
commit 8b90b4c9ef
No known key found for this signature in database

View file

@ -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
}
/*