Oban logging too verbose

Is there a way to reduce Oban logging ? Not sure if they are linked but I have recently added the Oban Web OSS as well. Too much noise in logs. Have I misconfigured something ?

You can control which events are logged when you attach the logger: Oban.Telemetry — Oban v2.19.1

Select the event categories you want to see:

Oban.Telemetry.attach_default_logger(events: ~w(job notifier peer)a)
3 Likes