Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logger.rb « health_status « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 820c1aeb695e4ace31a380fd4e619a36d3e4f995 (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 HealthStatus
      class Logger < ::Gitlab::JsonLogger
        exclude_context!

        def self.file_name_noext
          'database_health_status'
        end
      end
    end
  end
end