method
error_print
error_print(exception)
private
Hide source
# File lib/drb/drb.rb, line 1641 def error_print(exception) exception.backtrace.inject(true) do |first, x| if first $stderr.puts "#{x}: #{exception} (#{exception.class})" else $stderr.puts "\tfrom #{x}" end false end end