The title says it all. I have a vanilla Rails 7 application that is using Sidekiq 7 in the most typical setup.
I start my local processes with bin/dev
. This fails to show Sidekiq outputs.
My Procfile.dev
looks as follows:
web: bin/rails server -p 3000
js: yarn build --watch
css: yarn build:css --watch
sidekiq: bundle exec sidekiq
Right now, I get the output of web, js, and css in that terminal tab. I am not getting the Sidekiq output. How can I fix this?
fwiw, Sidekiq output in showing up in logs/development.log.