summaryrefslogtreecommitdiff
path: root/lib/gitlab/deprecation_json_logger.rb
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