gitlab-org--gitlab-foss/lib/gitlab/git_logger.rb

14 lines
271 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2012-09-11 20:24:53 +00:00
module Gitlab
class GitLogger < Gitlab::Logger
2014-10-04 15:09:06 +00:00
def self.file_name_noext
'githost'
2012-09-11 20:24:53 +00:00
end
def format_message(severity, timestamp, progname, msg)
"#{timestamp.to_s(:long)} -> #{severity} -> #{msg}\n"
end
end
end