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

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

module Gitlab
  class BackupLogger < Gitlab::JsonLogger
    exclude_context!

    def self.file_name_noext
      'backup_json'
    end
  end
end