Reduce log level for skipping receives in the simulator due to artificial latency

This commit is contained in:
Tyler Neely 2023-02-07 16:47:26 +00:00
parent 05acece20c
commit 5d89b5525c

View File

@ -185,7 +185,8 @@ class SimulatorHandle {
} else if (contains_items) {
auto count = can_rx.back().deliverable_at.time_since_epoch().count();
auto now_count = cluster_wide_time_microseconds_.time_since_epoch().count();
spdlog::warn("can't receive item in the buffer. deliverable_at: {}, now: {}", count, now_count);
spdlog::trace("can't receive message yet due to artificial latency. deliverable_at: {}, now: {}", count,
now_count);
}
}