diff --git a/background/email.go b/background/email.go index 6db77aea..e9ab160b 100644 --- a/background/email.go +++ b/background/email.go @@ -27,7 +27,7 @@ func enqueueJobEmail(job email.Job) { func startWorkerEmail(ctx context.Context, channel chan email.Job) { go func() { - log.Info().Msg("Email worker started") + log.Debug().Msg("Email worker started") for { select { case <-ctx.Done(): diff --git a/background/text.go b/background/text.go index 8e9d920a..38c7937d 100644 --- a/background/text.go +++ b/background/text.go @@ -29,7 +29,7 @@ func enqueueJobText(job text.Job) { func startWorkerText(ctx context.Context, channel chan text.Job) { go func() { - log.Info().Msg("Text worker started") + log.Debug().Msg("Text worker started") for { select { case <-ctx.Done():