gitlab-org--gitlab-foss/lib/gitlab/git_logger.rb
Stan Hu 0324028a3f Rename githost.log -> git_json.log
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.
2019-08-08 13:39:11 -07:00

9 lines
140 B
Ruby

# frozen_string_literal: true
module Gitlab
class GitLogger < JsonLogger
def self.file_name_noext
'git_json'
end
end
end