class Utils::ProbeServer::LogWrapper

def method_missing(*a, &b)

Returns:
  • (Object) - the result of the delegated method call on the

Parameters:
  • b (Proc) -- the block passed to the missing method
  • a (Array) -- the arguments passed to the missing method
def method_missing(*a, &b)
  @object.__send__(*a, &b)
end