summaryrefslogtreecommitdiff
path: root/lib/gitlab/puma_logging/json_formatter.rb
blob: 9eeb980fc534d2d8572f52fc46c7a9f0acdca223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'json'

module Gitlab
  module PumaLogging
    class JSONFormatter
      def call(str)
        { timestamp: Time.now.utc.iso8601(3), pid: $$, message: str }.to_json
      end
    end
  end
end