0324028a3f
The githost.log name was often confused with GitHost.io. Rename this to git_json.log to make it clear it's coming from Git and that it's JSON data.
9 lines
140 B
Ruby
9 lines
140 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class GitLogger < JsonLogger
|
|
def self.file_name_noext
|
|
'git_json'
|
|
end
|
|
end
|
|
end
|