DEV Community

Shinji Nakamatsu
Shinji Nakamatsu

Posted on

 

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:

Top comments (0)

Timeless DEV post...

Git Concepts I Wish I Knew Years Ago

The most used technology by developers is not Javascript.

It's not Python or HTML.

It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.

I'm talking about Git and version control of course.

One does not simply learn git