我有一些代码,我从发现有效的提示拼凑而成。但是出了点问题,我感到很困惑。没有任何内容发送到屏幕,文件为空。
以下是该计划:
#!/usr/bin/env ruby -w
require "stringio"
class Tee
def initialize
date_str = `date '+%Y%m%d_%H%M%S'`.chomp
@log = File.new("tee_output_example_#{date_str}.log","w")
end
["$stdout", "$stderr"].each do |std|
io = eval(std)
old_write = io.method(:write)
class << io
self
end.module_eval do
define_method(:write) do |text|
unless text =~ /^[\r\n]+$/ # Because puts calls twice.
File.open(@log, "a") do |f|
# f.puts [std[1..-1].upcase, caller[2], text].join(" ")
f.puts text
end
end
old_write.call(text)
end
end
end
end
logger = Tee.new()
logger.puts "text on stdout"
logger.puts "Something else"
$stdout = STDOUT
$stderr = STDERR
$stdout.puts "plain puts to $stdout"
$stderr.puts "plain puts to $stderr"
答案 0 :(得分:2)
我设法用这个命令解决了这个问题:
STDOUT.reopen IO.popen "tee stdout.log", "a"
STDERR.reopen IO.popen "tee stderr.log", "a"
答案 1 :(得分:0)
你的期望对我来说不是很清楚,但这似乎是一个合理的开始(根据你的最终目标你可以采取几个方向)。
#!/usr/bin/env ruby -w
class Tee
attr_accessor :log_file
def initialize()
self.log_file = File.open "tee_output_example_#{date_str}.log", "w"
at_exit { log_file.close }
end
def date_str
Time.now.strftime "%Y%m%d_%H%M%S"
end
def puts(*strings)
log_file.puts(*strings)
$stdout.puts(*strings)
end
end
# will be sent to both $stdout and the logfile
logger = Tee.new
logger.puts "text on stdout"
logger.puts "Something else"
# will only be sent to $stdout or $stderr
$stdout.puts "plain puts to $stdout"
$stderr.puts "plain puts to $stderr"
答案 2 :(得分:0)
我可以提供一些有关调试技巧的提示,但相反,我会建议一种可能满足您需求的替代解决方案:
class Tee
def initialize(a,b); @a,@b = a,b; end
def method_missing(m,*args,&b)
@a.send(m,*args,&b)
@b.send(m,*args,&b)
end
end
这个类比你想写的更有用;它需要2个对象,并将所有方法调用(包括参数和块)传递给它们。所以你可以这样做:
tee = Tee.new(File.open("log","w"), $stdout)
tee.puts "Hello world AND log file!"