2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
module Gitlab
|
|
|
|
module Import
|
|
|
|
class Logger < ::Gitlab::JsonLogger
|
|
|
|
def self.file_name_noext
|
|
|
|
'importer'
|
|
|
|
end
|
2021-10-27 15:23:28 +05:30
|
|
|
|
|
|
|
def default_attributes
|
|
|
|
super.merge(feature_category: :importers)
|
|
|
|
end
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|