summaryrefslogtreecommitdiff
path: root/config/initializers/bullet.rb
blob: 652d10f183fb7b7244e14d5f8cfd5bb30daecf59 (plain)
1
2
3
4
5
6
7
8
9
10
if Rails.env.development?
  Rails.application.config.after_initialize do
    Bullet.enable = true
    Bullet.alert = false
    Bullet.bullet_logger = true
    Bullet.console = true
    Bullet.rails_logger = true
    Bullet.add_footer = true
  end
end