gitlab-ce/lib/gitlab/ci/resource_groups/logger.rb

14 lines
234 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module ResourceGroups
class Logger < ::Gitlab::JsonLogger
def self.file_name_noext
'ci_resource_groups_json'
end
end
end
end
end