Skip to content
Snippets Groups Projects
Commit bbf79f5d authored by Jack Nagel's avatar Jack Nagel
Browse files

Make logging cheaper in the non-verbose case

parent 03abf834
No related branches found
No related tags found
No related merge requests found
......@@ -538,9 +538,16 @@ class Formula
File.open(logfn, 'w') do |f|
f.puts Time.now, "", cmd, args, ""
while buf = rd.gets
f.puts buf
puts buf if ARGV.verbose?
if ARGV.verbose?
while buf = rd.gets
f.puts buf
puts buf
end
elsif IO.respond_to?(:copy_stream)
IO.copy_stream(rd, f)
else
buf = ""
f.write(buf) while rd.read(1024, buf)
end
Process.wait(pid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment