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

api_logger.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcb194a1b89700d7a9be4e72a644aa8228e0691c (plain)
1
2
3
4
5
6
7
module Gitlab
  class ApiLogger < ::Logger
    def format_message(severity, timestamp, progname, message)
      super + "\n"
    end
  end
end