gitlab-org--gitlab-foss/lib/gitlab/grape_logging/loggers/context_logger.rb

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