mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00

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.
10 lines
140 B
Ruby
10 lines
140 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class GitLogger < JsonLogger
|
|
def self.file_name_noext
|
|
'git_json'
|
|
end
|
|
end
|
|
end
|