mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-10 01:31:45 +00:00
17 lines
340 B
Ruby
17 lines
340 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Bullet
|
|
extend self
|
|
|
|
def enabled?
|
|
Gitlab::Utils.to_boolean(ENV['ENABLE_BULLET'], default: false)
|
|
end
|
|
alias_method :extra_logging_enabled?, :enabled?
|
|
|
|
def configure_bullet?
|
|
defined?(::Bullet) && (enabled? || Gitlab.config.bullet.enabled)
|
|
end
|
|
end
|
|
end
|