2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
module Gitlab
|
2020-03-09 13:42:32 +05:30
|
|
|
class AppJsonLogger < Gitlab::JsonLogger
|
2018-03-27 19:54:05 +05:30
|
|
|
def self.file_name_noext
|
2020-03-09 13:42:32 +05:30
|
|
|
'application_json'
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|