14 lines
232 B
Ruby
14 lines
232 B
Ruby
|
# 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
|