gitlab-org--gitlab-foss/lib/gitlab/git_logger.rb
Stan Hu 71045b89f6 Convert githost.log to JSON format
This will make it easier to parse this in production and adds the
`correlation_id` if available.
2019-07-22 14:56:03 -05:00

9 lines
139 B
Ruby

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