summaryrefslogtreecommitdiff
path: root/internal/workers/worker_fn.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/workers/worker_fn.go')
-rw-r--r--internal/workers/worker_fn.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/workers/worker_fn.go b/internal/workers/worker_fn.go
index c41bee2b0..3f467e662 100644
--- a/internal/workers/worker_fn.go
+++ b/internal/workers/worker_fn.go
@@ -114,8 +114,8 @@ func (w *FnWorker) run(ctx context.Context) {
if w.Queue == nil {
panic("not yet initialized")
}
- log.Infof(ctx, "%p: starting worker", w)
- defer log.Infof(ctx, "%p: stopped worker", w)
+ log.Debugf(ctx, "%p: starting worker", w)
+ defer log.Debugf(ctx, "%p: stopped worker", w)
util.Must(func() { w.process(ctx) })
}