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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
265 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
class AppTextLogger < Gitlab::Logger
def self.file_name_noext
'application'
end
def format_message(severity, timestamp, progname, msg)
"#{timestamp.utc.iso8601(3)}: #{msg}\n"
end
end
end