debian-mirror-gitlab/lib/gitlab/ci/resource_groups/logger.rb

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

14 lines
234 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# 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