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

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

module BulkImports
  class Logger < ::Gitlab::Import::Logger
    IMPORTER_NAME = 'gitlab_migration'

    def default_attributes
      super.merge(importer: IMPORTER_NAME)
    end
  end
end