gitlab-ce/lib/gitlab/database/load_balancing/logger.rb

16 lines
265 B
Ruby

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