bool LogNode::shutdown()

in cloudwatch_logger/src/log_node.cpp [79:85]


bool LogNode::shutdown() {
  bool is_shutdown = Service::shutdown();
  if (this->log_service_) {
    is_shutdown &= this->log_service_->shutdown();
  }
  return is_shutdown;
}