Method: EXEL::ProcessorHelper#log_exception
- Defined in:
- lib/exel/processor_helper.rb
#log_exception(message = '') ⇒ Object
52 53 54 55 56 57 58 |
# File 'lib/exel/processor_helper.rb', line 52 def log_exception( = '') yield rescue => e log_error "Exception: #{e..chomp} #{}" log_error e.backtrace.join("\n") raise e end |