summaryrefslogtreecommitdiff
path: root/lib/gitlab/grape_logging/loggers/context_logger.rb
blob: 0a8f0872fbe303b03ec6831afeab64cc9578e0a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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