Quiet down startup logs

This commit is contained in:
Eli Ribble 2026-02-14 15:40:33 +00:00
parent 427b60132a
commit 4c856ab403
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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():

View file

@ -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():