DEV Community

Shinji NAKAMATSU
Shinji NAKAMATSU Subscriber

Posted on

2 1

Set the Sidekiq log level to the Rails log level

Sidekiq's default Log Level is INFO, and its settings are indepent from Rails.

Sidekiq uses the standard Ruby Logger class for logging.

To change the Log Level in the Logger class, give a constant value for Severity using the #level= method.

Set the Sidekiq Log Level for the Logger used by Sidekiq in config/initializers/sidekiq.rb as follows:

Sidekiq.configure_server do |config|
  config.logger.level = Rails.logger.level
end
Enter fullscreen mode Exit fullscreen mode

See also:

Sentry image

Hands-on debugging session: instrument, monitor, and fix

Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.

RSVP here →

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay