summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/load_balancing/logger.rb
blob: ee67ffcc99ce8edd1997ad84ca8c31c4b1bfa824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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