| 144 | } |
| 145 | |
| 146 | void routing_manager_client::status_log_timer_cbk(boost::system::error_code const& _error) { |
| 147 | if (!_error) { |
| 148 | const uint32_t its_interval = configuration_->get_status_log_interval(host_->get_name(), false); |
| 149 | VSOMEIP_INFO_P << " "; |
| 150 | ep_mgr_->print_status(); |
| 151 | |
| 152 | { |
| 153 | std::scoped_lock its_lock(log_timer_mutex_); |
| 154 | status_log_timer_.expires_after(std::chrono::milliseconds(its_interval)); |
| 155 | status_log_timer_.async_wait([this](boost::system::error_code const& ec) { this->status_log_timer_cbk(ec); }); |
| 156 | } |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void routing_manager_client::version_log_timer_cbk(boost::system::error_code const& _error) { |
| 161 | if (!_error) { |
no test coverage detected