BigW Consortium Gitlab

app_logger.rb 227 Bytes
Newer Older
randx committed
1 2
module Gitlab
  class AppLogger < Gitlab::Logger
Ciro Santilli committed
3 4
    def self.file_name_noext
      'application'
randx committed
5 6 7 8 9 10 11
    end

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