debian-mirror-gitlab/lib/gitlab/database/load_balancing/logger.rb
2021-09-04 01:27:46 +05:30

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