Class: MVCLI::Middleware::ExceptionLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/mvcli/middleware/exception_logger.rb

Instance Method Summary collapse

Instance Method Details

#call(command) ⇒ Object



4
5
6
7
8
9
# File 'lib/mvcli/middleware/exception_logger.rb', line 4

def call(command)
  yield command
rescue Exception => e
  command.log << e.message + "\n"
  raise e
end