Files
gitlab-foss/lib/gitlab/deprecation_json_logger.rb
2023-05-12 15:13:54 +00:00

12 lines
190 B
Ruby

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