This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 7b97576b Noisy, and doesn't seem to help
7b97576b is described below
commit 7b97576b42d2b935457124d2a77e46b0c8edc0c7
Author: Sebb <[email protected]>
AuthorDate: Sun Jul 24 15:07:47 2022 +0100
Noisy, and doesn't seem to help
---
tools/site-scan.rb | 2 --
1 file changed, 2 deletions(-)
diff --git a/tools/site-scan.rb b/tools/site-scan.rb
index 33828fc4..90d04619 100755
--- a/tools/site-scan.rb
+++ b/tools/site-scan.rb
@@ -176,7 +176,6 @@ def exec_with_timeout(cmd, timeout)
status = false
pid = Process.spawn(*cmd, pgroup: true, :out => wout, :err => werr)
- $stderr.puts "TEST: >> #{Time.now} scanning: #{cmd[-1]} #{pid}"
Timeout.timeout(timeout) do
Process.waitpid(pid)
@@ -206,7 +205,6 @@ def exec_with_timeout(cmd, timeout)
rout.close
rerr.close
end
- $stderr.puts "TEST: << #{Time.now} scanning: #{cmd[-1]} #{pid}"
return stdout, stderr, status
end