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