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