debian-mirror-gitlab/lib/gitlab/grape_logging/loggers/context_logger.rb
2020-05-24 23:13:21 +05:30

14 lines
314 B
Ruby

# frozen_string_literal: true
# This module adds additional correlation id the grape logger
module Gitlab
module GrapeLogging
module Loggers
class ContextLogger < ::GrapeLogging::Loggers::Base
def parameters(_, _)
Labkit::Context.current.to_h
end
end
end
end
end