From 4c856ab403d3c11d88d6175a955d67904f17eaeb Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sat, 14 Feb 2026 15:40:33 +0000 Subject: [PATCH] Quiet down startup logs --- background/email.go | 2 +- background/text.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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():