module Console::Output
Output
handling.
Constants
- JSON
-
Serialize log messages in a structured format.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output.rb, line 24 def self.new(output = nil, env = ENV, **options) if names = env["CONSOLE_OUTPUT"] names = names.split(",").reverse names.inject(output) do |output, name| Output.const_get(name).new(output, **options) end else return Output::Default.new(output, **options) end end
Create a new output based on the environment.
The environment variable ‘CONSOLE_OUTPUT` can be used to specify a list of output classes to wrap around the output. If not specified the {Default} output is used.
The output argument is deliberately unders-specified but can be an IO object or an instance of {Output}.
@parameter output [Console::Output] The output to wrap OR an IO object. @parameter env [Hash] The environment to read configuration from. @parameter options [Hash] Additional options to customize the output. @returns [Console::Output] The output instance.