Quiet down startup logs
This commit is contained in:
parent
427b60132a
commit
4c856ab403
2 changed files with 2 additions and 2 deletions
|
|
@ -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():
|
||||
|
|
|
|||
|
|
@ -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():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue