mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
10 lines
160 B
Ruby
10 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class AppJsonLogger < Gitlab::JsonLogger
|
|
def self.file_name_noext
|
|
'application_json'
|
|
end
|
|
end
|
|
end
|