From ca523478aa56160ac28d55d646ae6f31f09be657 Mon Sep 17 00:00:00 2001 From: David Bailey Date: Mon, 17 Apr 2023 16:40:59 +0200 Subject: [PATCH] refactor: :mute: muted some debug outputs --- lib/comfpile/core.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/comfpile/core.rb b/lib/comfpile/core.rb index b0c5d61..f697634 100644 --- a/lib/comfpile/core.rb +++ b/lib/comfpile/core.rb @@ -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