Module: LoggingAspect
- Included in:
- ServerBase
- Defined in:
- lib/macaw_framework/aspects/logging_aspect.rb
Overview
This Aspect is responsible for logging the input and output of every endpoint called in the framework.
Instance Method Summary collapse
Instance Method Details
#call_endpoint(logger, *args, **kwargs) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/macaw_framework/aspects/logging_aspect.rb', line 11 def call_endpoint(logger, *args, **kwargs) return super(*args, **kwargs) if logger.nil? begin response = super(*args) rescue StandardError => e logger.error("#{e.}\n#{e.backtrace.join("\n")}") raise e end response end |