2019-12-12 13:07:34 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Gitlab.com uses Snowplow for identifying users and events.
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/issues/6329
|
|
|
|
#
|
2020-02-10 19:09:06 -05:00
|
|
|
# SnowplowTracker writes logs to STDERR:
|
2019-12-12 13:07:34 -05:00
|
|
|
# https://github.com/snowplow/snowplow-ruby-tracker/blob/39fcfa2be793f2e25e73087a9700abc93f43b5e8/lib/snowplow-tracker/emitters.rb#L23
|
2020-02-10 19:09:06 -05:00
|
|
|
if defined?(::SnowplowTracker::LOGGER)
|
|
|
|
# This squelches the output of the logger since it doesn't really
|
|
|
|
# provide useful information.
|
|
|
|
# https://github.com/snowplow/snowplow-ruby-tracker/pull/109
|
|
|
|
# would make it possible to configure this logger directly.
|
|
|
|
::SnowplowTracker::LOGGER.level = Logger::FATAL
|
2019-12-12 13:07:34 -05:00
|
|
|
end
|