gitlab-org--gitlab-foss/lib/gitlab/deprecation_json_logger.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
168 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Gitlab
class DeprecationJsonLogger < Gitlab::JsonLogger
def self.file_name_noext
'deprecation_json'
end
end
end