class Console::Logger

def initialize(output, **options)

def initialize(output, **options)
	# This is the expected default behaviour, but it may be nice to have a way to override it.
	output = Output::Failure.new(output, **options)
	
	super(output, **options)
end