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

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

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