bool LogNode::start()

in cloudwatch_logger/src/log_node.cpp [70:77]


bool LogNode::start() {
  bool is_started = true;
  if (this->log_service_) {
    is_started &= this->log_service_->start();
  }
  is_started &= Service::start();
  return is_started;
}