class Console::Output::Serialized
Serialize log messages in a structured format.
Attributes
@attribute [Console::Format] The format to use for serializing log messages.
@attribute [IO] The output stream.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/serialized.rb, line 19 def initialize(stream, format: Format.default, **options) @stream = stream @format = format end
Create a new serialized output.
@parameter io [IO] The output stream. @parameter format [Console::Format] The format to use for serializing log messages. @parameter options [Hash] Additional options to customize the output.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/serialized.rb, line 50 def call(subject = nil, *arguments, severity: UNKNOWN, **options, &block) record = { time: Time.now.iso8601, severity: severity, oid: subject.object_id, pid: Process.pid, } # We want to log just a brief subject: if subject.is_a?(String) record[:subject] = subject elsif subject.is_a?(Module) record[:subject] = subject.name else record[:subject] = subject.class.name end if annotation = Fiber.current.annotation record[:annotation] = annotation end message = arguments if block_given? if block.arity.zero? message << yield else buffer = StringIO.new yield buffer message << buffer.string end end if message.size == 1 record[:message] = message.first elsif message.any? record[:message] = message end record.update(options) @stream.write(self.dump(record) << "\n") end
Output
the given log message.
@parameter subject [String] The subject of the log message. @parameter arguments [Array] The arguments to log. @parameter severity [Symbol] The severity of the log message. @parameter options [Hash] Additional options. @parameter block [Proc] An optional block used to generate the log message.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/serialized.rb, line 39 def dump(record) @format.dump(record) end
Serialize the given record.
@parameter record [Hash] The record to serialize. @returns [String] The serialized record.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/serialized.rb, line 25 def last_output self end
This a final output that then writes to an IO object.