Flowdock
method

error_print

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: DRb::DRbServer
error_print(exception) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/drb/drb.rb, line 1635
    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
Register or log in to add new notes.