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

logger.rb « click_house « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90af644799b3f046e2905bf18f4f69c851b05cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module ClickHouse
  class Logger < ::Gitlab::JsonLogger
    exclude_context!

    def self.file_name_noext
      'clickhouse'
    end
  end
end