Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deprecation_json_logger.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b0900a86ddca65209d1e39318bed79e988799aa (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  class DeprecationJsonLogger < Gitlab::JsonLogger
    exclude_context!

    def self.file_name_noext
      'deprecation_json'
    end
  end
end