我需要为块内发生的所有异常添加调试信息,但我不想弄乱回溯。$!
在 1.9.3 中似乎不允许这样做;raise
无论我尝试什么,都在替换回溯。
想法?
这是我最初使用的:
def self.load(filename, virtual_path = nil)
t = Template.new(filename, virtual_path)
t.is_page? ? Page.new(t) : t
rescue
raise $!, "Error loading template '#{filename}'#{virtual_path ? " under virtual path '" + virtual_path + "'" : ""}: #{$!}"
end
到目前为止我发现的最好的是:
def self.load(filename, virtual_path = nil)
t = Template.new(filename, virtual_path)
t.is_page? ? Page.new(t) : t
rescue => e
raise e, "Error loading template '#{filename}'#{virtual_path ? " under virtual path '" + virtual_path + "'" : ""}: #{e.message} #{e.backtrace}"
end
这会将原始堆栈跟踪转储到消息中,但仍不会将旧堆栈跟踪保留为堆栈跟踪