# Sidekiq debugging## Log arguments to Sidekiq jobsIf you want to see what arguments are being passed to Sidekiq jobs you can setthe SIDEKIQ_LOG_ARGUMENTS environment variable.```SIDEKIQ_LOG_ARGUMENTS=1 bundle exec foreman start```It is not recommend to enable this setting in production because some Sidekiqjobs (such as sending a password reset email) take secret arguments (forexample the password reset token).