refactor: 🔇 muted some debug outputs

This commit is contained in:
David Bailey 2023-04-17 16:40:59 +02:00
parent 98bce3155d
commit ca523478aa

View file

@ -112,7 +112,7 @@ module Comfpile
@processing_stack.reverse_each do |a| @processing_stack.reverse_each do |a|
i += 1 i += 1
if a.waiting? if a.waiting?
puts "DBG - Found item after #{i} checks" # puts "DBG - Found item after #{i} checks"
return a return a
end end
end end
@ -125,7 +125,7 @@ module Comfpile
def execute_step def execute_step
return if @processing_stack.empty? return if @processing_stack.empty?
puts "Got #{@processing_stack.length} items..." # puts "Got #{@processing_stack.length} items..."
processing_stack_prune processing_stack_prune
@ -133,7 +133,7 @@ module Comfpile
return nil if artefact.nil? return nil if artefact.nil?
puts "Processing artefact #{artefact.stage} #{artefact.target}" # puts "Processing artefact #{artefact.stage} #{artefact.target}"
begin begin
artefact.execute_step artefact.execute_step