9 lines
153 B
Ruby
9 lines
153 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Feature
|
|
class Logger < ::Gitlab::JsonLogger
|
|
def self.file_name_noext
|
|
'features_json'
|
|
end
|
|
end
|
|
end
|