class Console::Progress

def increment(amount = 1)

def increment(amount = 1)
	@current += amount
	
	if output?
		Console.call(@subject, self.to_s, event: self.to_hash, **@options)
		@last_output_time = Progress.now
	end
	
	return self
end