Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git_logger.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbfed205a0f4c6554727cf7d0c88e1ac5fda7ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  class GitLogger < Gitlab::Logger
    def self.file_name
      'githost.log'
    end

    def format_message(severity, timestamp, progname, msg)
      "#{timestamp.to_s(:long)} -> #{severity} -> #{msg}\n"
    end
  end
end