From f78002b0864b32295c84c58de91d0504b544f8dd Mon Sep 17 00:00:00 2001 From: Mike Karlesky Date: Tue, 14 May 2024 11:02:57 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20Removed=20redundancy=20in=20d?= =?UTF-8?q?ebug=20logging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ceedling/tool_executor_helper.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ceedling/tool_executor_helper.rb b/lib/ceedling/tool_executor_helper.rb index dfab1cfd..b605cfb4 100644 --- a/lib/ceedling/tool_executor_helper.rb +++ b/lib/ceedling/tool_executor_helper.rb @@ -89,9 +89,6 @@ def log_results(command_str, shell_result) # Detailed debug logging if @verbosinator.should_output?( Verbosity::DEBUG ) - output += "> Produced output: " - output += shell_result[:output].empty? ? "\n" : "\n#{shell_result[:output].chomp("\n")}\n" - output += "> With $stdout: " output += shell_result[:stdout].empty? ? "\n" : "\n#{shell_result[:stdout].to_s.chomp("\n")}\n"