module Orthoses::Builder::CallLogable

def call()

def call()
  Orthoses.logger.info("[#{self.class}]#call start")
  super.tap do
    Orthoses.logger.info("[#{self.class}]#call end")
  end
end