gitlab-org--gitlab-foss/lib/gitlab/database/load_balancing/logger.rb

14 lines
239 B
Ruby

# frozen_string_literal: true
module Gitlab
module Database
module LoadBalancing
class Logger < ::Gitlab::JsonLogger
def self.file_name_noext
'database_load_balancing'
end
end
end
end
end