From: nobu@... Date: 2015-07-13T14:33:55+00:00 Subject: [ruby-core:69958] [Ruby trunk - Feature #11347] Errors with cause not reported properly to console Issue #11347 has been updated by Nobuyoshi Nakada. Tracker changed from Bug to Feature Description updated ---------------------------------------- Feature #11347: Errors with cause not reported properly to console https://bugs.ruby-lang.org/issues/11347#change-53390 * Author: Aleksandar Kostadinov * Status: Open * Priority: Normal * Assignee: ---------------------------------------- Hello, errors with `cause` are an important and very useful feature for debugging. It seems though default reporting is not showing the `cause` and nested causes to user. Here's a test file: ~~~ruby raise "GAHGAH" rescue raise "error with cause" rescue e=$! puts "Error: #{e}" puts "Cause: #{e.cause}" raise e ~~~ As you can see, the `cause` of the error is not printed in any way to the console when error is raised: ~~~ $ ruby /tmp/test.rb Error: error with cause Cause: GAHGAH /tmp/test.rb:1:in `rescue in
': error with cause (RuntimeError) from /tmp/test.rb:1:in `
~~~ -- https://bugs.ruby-lang.org/