Hi, I log errors/exception into a Thread in this way:
Thread.new {
                                begin
                        Logic::process(data)
                                rescue => e
                                        puts “#{e.class}: #{$!}”
                                end
            }
but it doesn’t show in which file and line the problem occurs, how to
show it?
Thanks a lot.