Skip to content
This repository was archived by the owner on Sep 7, 2020. It is now read-only.

Commit f57cc52

Browse files
author
Vladyslav Tupikin
committed
test commit
Commit for testing 476 MAP-4.7.6_ETH_FH5GH:netgear-rax40 Signed-off-by: Vladyslav Tupikin <v.tupikin@inango-systems.com>
1 parent e19508c commit f57cc52

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

agent/src/beerocks/monitor/monitor_thread.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -527,16 +527,17 @@ void monitor_thread::after_select(bool timeout)
527527
*/
528528
auto radio_node = mon_db.get_radio_node();
529529
auto &info = radio_node->ap_metrics_reporting_info();
530+
530531
if (radio_node->get_stats().vap_stats_available &&
531532
(0 != info.ap_channel_utilization_reporting_threshold)) {
532533
int elapsed_time_s =
533534
std::chrono::duration_cast<std::chrono::seconds>(
534535
now - info.ap_metrics_channel_utilization_last_reporting_time_point)
535536
.count();
536-
537+
LOG(DEBUG) << "VT: if (radio_node->get_stats().vap_stats_available &&";
537538
if (elapsed_time_s >= ap_metrics_channel_utilization_measurement_period_s) {
538539
info.ap_metrics_channel_utilization_last_reporting_time_point = now;
539-
540+
LOG(DEBUG) << "VT: Call on_channel_utilization_measurement_period_elapsed";
540541
on_channel_utilization_measurement_period_elapsed();
541542
}
542543
}
@@ -553,7 +554,7 @@ void monitor_thread::on_channel_utilization_measurement_period_elapsed()
553554
LOG(ERROR) << "Unable to get channel utilization";
554555
return;
555556
}
556-
557+
LOG(DEBUG) << "VT: Start process hannel utilization";
557558
/**
558559
* If previous channel utilization was lower than the threshold and now it is higher than the
559560
* threshold, report it.

0 commit comments

Comments
 (0)